function scriviSwf(swf,w,h,dimensioneFissa){
	document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"");
	document.write("codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab\"");
	if(dimensioneFissa==true){
		document.write("width=\""+w+"\" height=\""+h+"\">");
	} else {
		document.write("width=\"100%\" height=\"100%\">");
	}
	document.write("<param name=\"loop\" value=\"false\">");
	document.write("<param name=\"menu\" value=\"true\">");
	document.write("<param name=\"quality\" value=\"high\">");
	document.write("<param name=\"scale\" value=\"noscale\">");
	document.write("<param name=\"wmode\" value=\"transparent\">");
	document.write("<param name='movie' value='"+swf+"' />\n");
	document.write("<param name='quality' value='high' /><param name='wmode' value='transparent' />\n");
	if(dimensioneFissa==true){
		document.write("<embed src=\""+swf+"\" quality=\"high\" wmode=\"transparent\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" menu=\"true\" quality=\"high\" scale=\"noscale\"  type=\"application/x-shockwave-flash\" width=\""+w+"\" height=\""+h+"\"></embed>");
	} else {
		document.write("<embed src=\""+swf+"\" quality=\"high\" wmode=\"transparent\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" menu=\"true\" quality=\"high\" scale=\"noscale\"  type=\"application/x-shockwave-flash\" width=\"100%\" height=\"100%\"></embed>");
	}
	document.write("</object>\n");
}

function apriCollezione2(url){
	//h1 = document.body.clientHeight;
	objCont = document.getElementById("collezione");
	objContFlash = document.getElementById("contFlash");
	
	objCont.style.display="block";
	h = (objCont.offsetHeight);
	w = objCont.offsetWidth;
	//posiziono il div
	objContFlash.style.width = h;
	objContFlash.style.height = h;
	objContFlash.style.top = 0;
	posX = (w-h)/2;
	objContFlash.style.left = posX;
}


function apriCollezione(url){
	var w=(screen.width);
	var h= (screen.height);
	var l = 0;
	var t = 0;
	window.open(url,'collection','width='+w+',height='+h+',top='+t+',left='+l+',resizable=no, status=no'); 
}
