function writeObjectsPeel(str1,str2,strurl){


// Date Function
var d = new Date();
var curr_date = d.getDate();
var curr_month = d.getMonth();
curr_month++;
var curr_year = d.getFullYear();	   

var write_date1	  
write_date1 = curr_month + "/" + curr_date + "/" + curr_year;	  
// Date Function


 // Time Function
var dt = new Date();
var curr_hour = dt.getHours();
var curr_min = dt.getMinutes();	
var curr_sec = dt.getSeconds();

 var write_time1
  // Time Function
 write_time1 = String(curr_hour) + String(curr_min) + String(curr_sec) ;	




var smartredfox = new Object();

//Where do you want the link to go to
smartredfox.link_url = escape(strurl+'&timestamp='+write_time1+'&D='+write_date1+'&LinkId='); //; escape('http://www.smartredfox.com');


//alert(escape(strurl+'&timestamp=003826&D='+write_date1+'&LinkId=')); 

//What folder are all of the files in
smartredfox.container = '';

//What images do you want to show
smartredfox.small_image = str1; //'small.jpg';
smartredfox.big_image = str2; //'large.jpg';

//Leave all the rest alone
smartredfox.small_path = 'http://www.hostsearch.com/small.swf';
smartredfox.big_path = 'http://www.hostsearch.com/large.swf';

smartredfox.small_params = escape(smartredfox.container) + smartredfox.small_path + '?ico=' + escape(smartredfox.container) + smartredfox.small_image;
smartredfox.big_params = escape(smartredfox.container) + smartredfox.big_path + '?big=' + escape(smartredfox.container) + smartredfox.big_image + '&ad_url=' + smartredfox.link_url;


 jQuery.noConflict();

jQuery(document).ready(function(){jQuery('body').prepend('<div id="jcornerBig" style="position:absolute;width:650px;height:650px;z-index:9999;right:0px;top:0px;"><object type="application/x-shockwave-flash" data="'+ smartredfox.big_params +'" id="jcornerBigObject" width="650" height="650"><param name="allowScriptAccess" value="always"/><param name="movie" value="'+ smartredfox.big_params +'"/><param name="FlashVars" value="'+ smartredfox.big_params +'"/><param name="wmode" value="transparent"/></object></div>');
jQuery('body').prepend('<div id="jcornerSmall" style="position:absolute;width:100px;height:100px;z-index:9999;right:0px;top:0px;"><object type="application/x-shockwave-flash" data="'+ smartredfox.small_params +'" id="jcornerSmallObject" width="100" height="100"><param name="FlashVars" value="?ico='+ smartredfox.small_params +'"/><param name="allowScriptAccess" value="always"/><param name="movie" value="'+ smartredfox.small_params +'"/><param name="wmode" value="transparent" /></object></div>');
setTimeout("jQuery('#jcornerBig').css('top','-1000px');",1000);});
}

function sizeup987(){jQuery('#jcornerBig').css('top','0px');jQuery('#jcornerSmall').css('top','-1000px');}
function sizedown987(){jQuery('#jcornerSmall').css('top','0px');jQuery('#jcornerBig').css('top','-1000px');}

