function pop(src,w,h){
h = eval((h * 1)+70)
w = eval((w * 1)+40)
//	alert(popped)
//	if(popped = "yup"){
//		if (OpenWin.closed != true){
//			OpenWin.Close()
//		}
		OpenWin = open("", "Gallery", "width=" + w + ", height=" + h + ", toolbar=0,menubar=0,location=0,status=0,scrollbars=auto,resize=1,top=50,left=50");
		OpenWin.document.writeln("<html>");
		OpenWin.document.writeln("<link rel='stylesheet' type='text/css' href='basic.css'>");
		OpenWin.document.writeln("<body style='padding:0;margin:20' onload='window.focus()' onBlur='window.close()'>");
		OpenWin.document.writeln("<center>");
		OpenWin.document.writeln("<p><a href='javascript:window.close()'>Close this window</a></p>");
		OpenWin.document.writeln("<img src='" + src + "' border=0>");
		OpenWin.document.writeln("</center>");
		OpenWin.document.writeln("</body>");
		OpenWin.document.writeln("</html>");
		OpenWin.focus()
//		popped = "yup"
//	}
}
