
id = "homepage";	// l'id del filmato
url = "homepage.swf?contatore=14613"; // il percorso del filmato swf
width = 1024;	// larghezza del filmato
height = 608;	// altezza del filmato


function insertObject(url, width, height, id) {
	if(document.all) {	// per explorer
		document.write( 
			"<object id=\""+id+"\" type=\"application/x-shockwave-flash\" width=\"" + width + "\" height=\"" + height + "\" data=\"" + url + "\">" +
			"	<param name=\"movie\" value=\"" + url + "\" />" +
			"</object>"
		);
	}
	else {	// tutti quelli normali
		document.write( 
			"<embed id=\""+id+"\" src=\""+url+"\" width=\"" + width + "\" height=\"" + height + "\" quality=\"high\">"
		);
	
		var object = document.getElementById(id);
		var mezWidth = width % 2 == 0 ? width/2 : (width-1)/2;
		var mezHeight = height % 2 == 0 ? height/2 : (height-1)/2;
		object.setAttribute("style", "position:absolute;width:"+width+"px;height:"+height+"px;margin-left:-"+mezWidth+"px;margin-top:-"+mezHeight+"px;left:50%;top:50%");

	}
}
insertObject(url, width, height, id);
