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

// 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")
}

}