function RunFlashHP()
{
   document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="578" height="283">\n');
   document.write('<param name="movie" value="it/images/Anim/HPTrasm.swf">\n');
   document.write('<param name="quality" value="high"><param name="LOOP" value="false">\n');
   document.write('<embed src="it/images/Anim/HPTrasm.swf" width="578" height="283" loop="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>\n');
   document.write('</object>\n');
}

function RunFlashWork()
{
   document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="550" height="150">\n');
   document.write('<param name="movie" value="images/Anim/WorkInProgress.swf">\n');
   document.write('<param name="quality" value="high"><param name="LOOP" value="false">\n');
   document.write('<embed src="images/Anim/WorkInProgress.swf" width="550" height="150" loop="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>\n');
   document.write('</object>\n');
}

function RunBackMusic()
{
   document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="550" height="150">\n');
   document.write('<param name="movie" value="images/Anim/BkMusic.swf">\n');
   document.write('<param name="quality" value="high"><param name="LOOP" value="false">\n');
   document.write('<embed src="images/Anim/BkMusic.swf" width="550" height="150" loop="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>\n');
   document.write('</object>\n');
}

function ScriviAnno()
{
	now = new Date;
	theYear=now.getYear();
	if (theYear < 1900) 
		{
			theYear=theYear+1900;
		}
	document.write(theYear);
}

function FullWin(PageName, WinName, PageWidth, PageHeight)
{
	//Cerco eventuali spazi nel titoloPagina
	while (WinName.indexOf(" ") != (-1)) 
	{
		WinName= WinName.replace(" ","")
	}
	
	var newWindow = window.open(PageName, WinName, "scrollbars=no,resizable=no,width=" + PageWidth + ",height=" + PageHeight, true);
	newWindow.focus();}