function page_peel(id,url,layer)
 {
 url_data = "http://tools.latinteencash.com";
 
 output  = '<div id="jcornerSmall" style="position:absolute;width:100px;height:100px;z-index:9999;right:0px;top:0px;">';
 // object
 output += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';
 output += ' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"';
 output += ' id="jcornerSmallObject" width="100" height="100">';
 // object params
 output += ' <param name="allowScriptAccess" value="always"/> ';
 output += ' <param name="movie" value="'+url_data+'/page_peel_small.swf"/>';
 output += ' <param name="wmode" value="transparent" />';
 output += ' <param name="quality" value="high" /> ';
 output += ' <param name="FlashVars" value="ico='+url_data+'/page_peel/'+id+'_small.jpg"/>';
 // embed
 output += '<embed src="'+url_data+'/page_peel_small.swf" name="jcornerSmallObject" wmode="transparent" quality="high" width="100" height="100" flashvars="ico='+url_data+'/page_peel/'+id+'_small.jpg" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';
 output += '</object></div>';
 output += '</script>';
 // </jcornerSmall>
 // <jcornerBig>
 output += '<div id="jcornerBig" style="position:absolute;width:650px;height:650px;z-index:9999;right:0px;top:0px;">';
 // object
 output += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';
 output += ' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"';
 output += ' id="jcornerBigObject" width="650" height="650">';
 // object params
 output += ' <param name="allowScriptAccess" value="always"/> ';
 output += ' <param name="movie" value="'+url_data+'/page_peel_large.swf"/>';
 output += ' <param name="wmode" value="transparent"/>';
 output += ' <param name="quality" value="high" /> ';
 output += ' <param name="FlashVars" value="big='+url_data+'/page_peel/'+id+'_large.jpg&ad_url='+escape(url)+'"/>';
 // embed
 output += '<embed src="'+url_data+'/page_peel_large.swf" id="jcornerBigEmbed" name="jcornerBigObject" wmode="transparent" quality="high" width="650" height="650" flashvars="big='+url_data+'/page_peel/'+id+'_large.jpg&ad_url='+escape(url)+'" swliveconnect="true" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';
 output += '</object></div>';
 // </jcornerBig>
 setTimeout('document.getElementById("jcornerBig").style.top = "-1000px";',1000);
                  
 if(layer)
  {
  document.getElementById(layer).innerHTML = output;
  }
 else
  {
  document.write(output);
  }
 }
 
function sizeup987()
 {
 document.getElementById('jcornerBig').style.top = '0px';
 document.getElementById('jcornerSmall').style.top = '-1000px';
 }

function sizedown987()
 {
 document.getElementById("jcornerSmall").style.top = "0px";
 document.getElementById("jcornerBig").style.top = "-1000px";
 } 