// JavaScript Document
function stampMyFlashcontent(valore)
{
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="100%" HEIGHT="100%" id="rsFlash" ALIGN="">\n');
	document.write('<PARAM NAME=movie VALUE="main.swf">\n');
	document.write('<PARAM NAME=salign VALUE="LT">\n');
	document.write('<PARAM NAME=quality VALUE=high>\n');
	document.write('<PARAM NAME=scale VALUE=noscale>\n');
	document.write('<param name=menu value=false>\n');
	document.write('<param name="FlashVars" VALUE="'+valore+'">\n');
	document.write('<embed src="main.swf"  FlashVars="'+valore+'" WIDTH="100%" HEIGHT="100%" quality="high" scale="noscale" bgcolor="#000000" NAME="rsFlash" SALIGN="LT" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" wmenu="false"></embed>\n');
	document.write('</OBJECT>');
}


function newSize(ny)
{
	if(document.all && !document.getElementById)
	{
 		document.all['myFlash'].style.pixelHeight = ny;
	}
	else
	{
		document.getElementById('myFlash').style.height = ny;
	}
}


