
var pic = null;
var popImg = null;
var imgCount = 0;

function winOpen() { return (popImg != null && popImg.closed != true) ? true : false; }

function DsiamoPopUp(picName,winWidth,winHeight) {

	if (pic == picName && winOpen()) {
		popImg.focus();
	} else {
		if (navigator.appName != "Microsoft Internet Explorer" || parseInt(navigator.appVersion) >=4)
			if (popImg != null && !popImg.closed) popImg.close();

		pic = picName;		
		imgWinName = "popImg" + imgCount++;
		
		popImg = window.open("",imgWinName, "toolbar=no,scrollbars=no,resizable=no,width=" + winWidth + ",height=" + winHeight);
		var htmlString = "<html><head><title></title></head><body LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>";

		popImg.document.open();
		popImg.document.write(htmlString);
		popImg.document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width=454 height=450>");
                popImg.document.write("<param name=movie value=flash/d_siamo.swf>");
                popImg.document.write("<param name=quality value=high>");
                popImg.document.write("<embed src=flash/d_siamo.swf quality=high pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash width=454 height=450></embed></object></body></html>");
		popImg.document.close();
	}

	return false;
}