function LoadFlash() {
	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%" ALIGN="top">');
	document.write('<param name="movie" value="index.swf">');
	document.write('<PARAM NAME=loop VALUE=false>');
	document.write('<PARAM NAME=menu VALUE=false>');
	document.write('<PARAM NAME=quality VALUE=best>');
	document.write('<PARAM NAME=bgcolor VALUE=#000>');
	document.write('<EMBED src="index.swf" loop=false menu=false quality=best bgcolor=#000 WIDTH="100%" HEIGHT="100%" ALIGN="top" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
	document.write('</object>');
}

function LoadFlash2() {
	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%" ALIGN="top">');
	document.write('<param name="movie" value="profilo.swf">');
	document.write('<PARAM NAME=loop VALUE=false>');
	document.write('<PARAM NAME=menu VALUE=false>');
	document.write('<PARAM NAME=quality VALUE=best>');
	document.write('<PARAM NAME=bgcolor VALUE=#000>');
	document.write('<EMBED src="profilo.swf" loop=false menu=false quality=best bgcolor=#000 WIDTH="100%" HEIGHT="100%" ALIGN="top" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
	document.write('</object>');
}

function Posizione() {
	if (document.body.clientHeight<550)
		document.getElementById("contenitore").style.top = "285px"
	if (document.body.clientWidth<900)
		document.getElementById("contenitore").style.left = "480px"
}

function DimensionaOLD() {
	var w = document.body.clientWidth
	var h = document.body.clientHeight
	document.getElementById("contenitore").style.top = 0
	document.getElementById("contenitore").style.left = 0
	if ((w - 1.5 * h) < 0) {		// il box ha la larghezza della finestra
		document.getElementById("contenitore").style.width = w
		document.getElementById("contenitore").style.height = w / 1.5
		//posiziona contenitore a metà schermo (altezza)
		document.getElementById("contenitore").style.top = (h - w / 1.5) / 2
	} else {										// il box ha l'altezza della finestra
		h -= 12
		document.getElementById("contenitore").style.height = h
		document.getElementById("contenitore").style.width = h * 1.5
		//posiziona contenitore a metà schermo (larghezza)
		document.getElementById("contenitore").style.left = (w - h * 1.5) / 2
	}
	document.getElementById("copy").style.top = parseFloat(document.getElementById("contenitore").style.top) + parseFloat(document.getElementById("contenitore").style.height)
}