function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=500');");
}

// Image opener					  
function popImg(img, w, h, t) {

	//Check for no sizes
	if (h==0)
	{
		h=300;
	}
	
	if (w==0)
	{
		w=300;
	}
	
	// Check for Mac
	if (navigator.userAgent.indexOf("Mac") != -1){
	// Reduce window measurements accordingly
	    w = w-0
		h = h-0
		}
	var s1 ="<html><head>"
	var s2 ="<title>"+t+"</title>"
	var s3 ="</head>"
	var s4 ="<body topmargin=0 bgcolor=\"#ffffff\" leftmargin=0 marginheight=0 marginwidth=0><center><img src='"+img+"' border=0>"
	var s5 ="</center></body>"
	var s6 ="</html>"
	
	var windowprops = ",top=50, left=50,location=no,scrollbars=no,menubars=no,toolbars=no,resizable=no" + ",width=" + w + ",height=" + h;
	
	if (img!='')
	{
		imgWin=window.open("","picWin",windowprops);
		imgWin.document.write(s1+s2+s3+s4+s5+s6)
		imgWin.document.close()
	}
	else
	{
		alert("No image to view")
	}
}



