// JavaScript Document

// JavaScript Document

var dominio = "http://www.belvederesanleo.it/"
//var dominio = "http://localhost/"

function homeSWF(){
	var shtml = "<object classid=\"clsid:d27CDB6E-AE6D-11cf-96B8-444553540000\"";
	shtml += " codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0\"";
	shtml += "  width=\"700\" height=\"230\" id=\"testata_movie\" align=\"\">";
	shtml += " <param name=\"movie\" value=\""+dominio+"/images/belvedere-home.swf\">";
	shtml += " <param name=\"quality\" value=\"high\">";
	shtml += " <param name=\"bgcolor\" value=\"##401200\">";
	shtml += " <param name=\"wmode\" value=\"window\">";
	shtml += " <param name=\"scale\" value=\"noborder\">";
	shtml += " <embed src=\""+dominio+"/images/belvedere-home.swf\" ";
	shtml += " quality=\"high\" bgcolor=\"##401200\" scale=\"noborder\" width=\"700\" height=\"230\" ";
	shtml += " name=\"testata_movie\" align=\"\" wmode=\"window\" ";
	shtml += "  type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>";
	shtml += "     </object>"

	var md = document;
	var swf1 = md.getElementById("home");
	swf1.innerHTML = shtml;
}
