
var enfo = new Object();
// ---------------------------------------------------------      MODIFFY
enfo.ad_url = escape('http://www.motiontheme.com/');              // Change URL to be redirected to when clicking Peel Away Ad
// ---------------------------------------------------------      END MODIFY

enfo.small_path = '/img/corner/cornersmall.swf';				//    Enter the URL of the Peel Away Corner Flash
enfo.small_image = escape('/img/corner/small.gif');	        //   URL of the Image behind the Peel
enfo.big_path = '/img/corner/cornerbig.swf';				//   Enter the URL of the Large Peel Away Corner
enfo.big_image = escape('/img/corner/big.jpg');		//   URL of the Big Image Behind the Peel

// Do not Change anything under this line-----------------------------------------------------------------------------------------

enfo.small_width = '100';
enfo.small_height = '100';
enfo.small_params = 'ico=' + enfo.small_image;
enfo.big_width = '650';
enfo.big_height = '650';
enfo.big_params = 'big=' + enfo.big_image + '&ad_url=' + enfo.ad_url;
function sizeup987(){
	document.getElementById('enfocornerBig').style.top = '0px';
	document.getElementById('enfocornerSmall').style.top = '-1000px';
}
function sizedown987(){
	document.getElementById("enfocornerSmall").style.top = "0px";
	document.getElementById("enfocornerBig").style.top = "-1000px";
}
enfo.putObjects = function () {
document.write('<div id="enfocornerSmall" style="position:absolute;width:'+ enfo.small_width +'px;height:'+ enfo.small_height +'px;z-index:9999;right:0px;top:0px;">');
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');
document.write(' id="enfocornerSmallObject" width="'+enfo.small_width+'" height="'+enfo.small_height+'">');
document.write(' <param name="allowScriptAccess" value="always"/> ');
document.write(' <param name="movie" value="'+ enfo.small_path +'?'+ enfo.small_params +'"/>');
document.write(' <param name="wmode" value="transparent" />');
document.write(' <param name="quality" value="high" /> ');
document.write(' <param name="FlashVars" value="'+enfo.small_params+'"/>');
document.write('<embed src="'+ enfo.small_path + '?' + enfo.small_params +'" name="enfocornerSmallObject" wmode="transparent" quality="high" width="'+ enfo.small_width +'" height="'+ enfo.small_height +'" flashvars="'+ enfo.small_params +'" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
document.write('</object></div></script>');
document.write('<div id="enfocornerBig" style="position:absolute;width:'+ enfo.big_width +'px;height:'+ enfo.big_height +'px;z-index:9999;right:0px;top:0px;">');
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');
document.write(' id="enfocornerBigObject" width="'+ enfo.big_width +'" height="'+ enfo.big_height +'">');
document.write(' <param name="allowScriptAccess" value="always"/> ');
document.write(' <param name="movie" value="'+ enfo.big_path +'?'+ enfo.big_params +'"/>');
document.write(' <param name="wmode" value="transparent"/>');
document.write(' <param name="quality" value="high" /> ');
document.write(' <param name="FlashVars" value="'+ enfo.big_params +'"/>');
document.write('<embed src="'+ enfo.big_path + '?' + enfo.big_params +'" id="enfocornerBigEmbed" name="enfocornerBigObject" wmode="transparent" quality="high" width="'+ enfo.big_width +'" height="'+ enfo.big_height +'" flashvars="'+ enfo.big_params +'" swliveconnect="true" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
document.write('</object></div>');
setTimeout('document.getElementById("enfocornerBig").style.top = "-1000px";',1000);
}
enfo.putObjects();