//JavaScript Document

function intro(numero) {
	var screenH = screen.height
	var screenW = screen.width
	var swfWidth = 0
	var swfHeight = 0
	
	if(screenH == 768)
		{
			swfHeight = 768
			swfWidth =1400
		}
		
	if((screenH > 768) && (screenH < 1024))
		{
			swfHeight = 1200
			swfWidth = 2200
		}
		
	if(screenH >= 1024)
		{
			swfHeight = 1200
			swfWidth = 2200
		}
		
	//swfHeight = 1200
	//swfWidth = 1500
	
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,124,0" width="' + swfWidth + '" height="' + swfHeight + '">\n')
		document.write('<param name="movie" value="swf/' + numero + '.swf" />\n')
        document.write('<param name="quality" value="high" />\n')
		//document.write('<param name="wmode" value="transparent" />\n')
        document.write('<embed src="swf/' + numero + '.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + swfWidth + '" height="' + swfHeight + '" scale="noborder"></embed>\n')
      document.write('</object>\n')
}

function menu() {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,124,0" width="700" height="120">\n')
		document.write('<param name="movie" value="swf/menu.swf" />\n')
        document.write('<param name="quality" value="high" />\n')
		//document.write('<param name="wmode" value="transparent" />\n')
        document.write('<embed src="swf/menu.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="120"></embed>\n')
      document.write('</object>\n')
}

function prova() {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,124,0" width="400" height="300">\n')
		document.write('<param name="movie" value="swf/prova.swf" />\n')
        document.write('<param name="quality" value="high" />\n')
		//document.write('<param name="wmode" value="transparent" />\n')
        document.write('<embed src="swf/prova.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="400" height="300"></embed>\n')
      document.write('</object>\n')
}
