var splashWin = null;

var ms = navigator.appVersion.indexOf("MSIE");
var ie = navigator.appVersion.indexOf("MSIE")>=0; // IE?

min_width = 176;   // min photo width
max_width = 800;   // max photo width

min_height = 176;  // min photo height
max_height = 600;  // max photo height




function popupImage(theURL, W, H) {
	wname = "splashWin"
	
	if (W<min_width) W = min_width;
	if (H<min_height) H = min_height;
	
	//if(ie) W = (W/2)*2+40;
	
	W = (W/2)*2+60;
	H = (H/2)*2+50;
	
	size = ",width="+W+",height="+H;
	
	//alert("Width: "+W+"\n Height: "+H);
	
	splashWin = window.open(theURL, wname, "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1"+size, true);
		// focus sulla finestra
	splashWin.focus();
}



