/*
var jaaspeel = new Object();

//%%CLICK_URL_UNESC%%
jaaspeel.ad_url = 'http://www.marcofolio.net/webdesign/create_a_peeling_corner_on_your_website.html';

jaaspeel.small_path = template_url+'/peel/small.swf';
jaaspeel.small_image = template_url+'/peel/small.jpg';
jaaspeel.small_width = 100;
jaaspeel.small_height = 100;
jaaspeel.small_params = 'ico=' + jaaspeel.small_image;

jaaspeel.big_path = template_url+'/peel/large.swf';
jaaspeel.big_image = template_url+'/peel/large.jpg';
jaaspeel.big_width = 650;
jaaspeel.big_height = 650;
jaaspeel.big_params = 'big=' + jaaspeel.big_image + '&ad_url=' + jaaspeel.ad_url;

putPeelObjects();
*/

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";
}

function putPeelObjects() {
	if (typeof jaaspeel != 'undefined' && typeof jaaspeel.small_image != 'undefined' && typeof jaaspeel.big_image != 'undefined') {
		jaaspeel.ad_url = escape(jaaspeel.ad_url);
		jaaspeel.small_image = escape(jaaspeel.small_image);
		jaaspeel.big_image = escape(jaaspeel.big_image);
		
		// Default value
		if (typeof jaaspeel.small_path == 'undefined') 
			jaaspeel.small_path = template_url + '/peel/small.swf';
		if (typeof jaaspeel.small_width == 'undefined') 
			jaaspeel.small_width = 100;
		if (typeof jaaspeel.small_height == 'undefined') 
			jaaspeel.small_height = 100;
		if (typeof jaaspeel.small_params == 'undefined') 
			jaaspeel.small_params = 'ico=' + jaaspeel.small_image;
		
		if (typeof jaaspeel.big_path == 'undefined') 
			jaaspeel.big_path = template_url + '/peel/large.swf';
		if (typeof jaaspeel.big_width == 'undefined') 
			jaaspeel.big_width = 650;
		if (typeof jaaspeel.big_height == 'undefined') 
			jaaspeel.big_height = 650;
		if (typeof jaaspeel.big_params == 'undefined') 
			jaaspeel.big_params = 'big=' + jaaspeel.big_image + '&ad_url=' + jaaspeel.ad_url;
		
		// <jcornerSmall>
		// IE must have something before to make it appear ???
		document.write('<div style="display:none;">&nbsp;</div><div id="jcornerSmall" style="position:absolute;width:' + jaaspeel.small_width + 'px;height:' + jaaspeel.small_height + 'px;z-index:9999;right:0px;top:0px;">');
		// object
		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="jcornerSmallObject" width="' + jaaspeel.small_width + '" height="' + jaaspeel.small_height + '">');
		// object params
		document.write(' <param name="allowScriptAccess" value="always"/> ');
		document.write(' <param name="movie" value="' + jaaspeel.small_path + '?' + jaaspeel.small_params + '"/>');
		document.write(' <param name="wmode" value="transparent" />');
		document.write(' <param name="quality" value="high" /> ');
		document.write(' <param name="FlashVars" value="' + jaaspeel.small_params + '"/>');
		// embed
		document.write('<embed src="' + jaaspeel.small_path + '?' + jaaspeel.small_params + '" name="jcornerSmallObject" wmode="transparent" quality="high" width="' + jaaspeel.small_width + '" height="' + jaaspeel.small_height + '" flashvars="' + jaaspeel.small_params + '" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
		document.write('</object></div>');
		document.write('</script>');
		// </jcornerSmall>
		// <jcornerBig>
		document.write('<div id="jcornerBig" style="position:absolute;width:' + jaaspeel.big_width + 'px;height:' + jaaspeel.big_height + 'px;z-index:9999;right:0px;top:0px;">');
		// object
		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="jcornerBigObject" width="' + jaaspeel.big_width + '" height="' + jaaspeel.big_height + '">');
		// object params
		document.write(' <param name="allowScriptAccess" value="always"/> ');
		document.write(' <param name="movie" value="' + jaaspeel.big_path + '?' + jaaspeel.big_params + '"/>');
		document.write(' <param name="wmode" value="transparent"/>');
		document.write(' <param name="quality" value="high" /> ');
		document.write(' <param name="FlashVars" value="' + jaaspeel.big_params + '"/>');
		// embed
		document.write('<embed src="' + jaaspeel.big_path + '?' + jaaspeel.big_params + '" id="jcornerBigEmbed" name="jcornerBigObject" wmode="transparent" quality="high" width="' + jaaspeel.big_width + '" height="' + jaaspeel.big_height + '" flashvars="' + jaaspeel.big_params + '" swliveconnect="true" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
		document.write('</object></div>');
		// </jcornerBig>
		setTimeout('document.getElementById("jcornerBig").style.top = "-1000px";', 1000);
	}
}

