// JavaScript Document
function popH(src, page_header, width, height) {
	win = window.open("", "_blank", "width=" + (width) + ",height=" + (height) + ",titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
	win.document.write("<html><head><title>" + page_header + "</title></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><table style='height: 100%' cellspacing='0' cellpadding='0' border='0'><tr><td valgin='middle'>");
	win.document.write("<" + "script" + ">\r\ndocument.title = \"" + page_header + "\";\r\nfunction _CloseOnEsc() {\r\nif(!event) {return;}if (event.keyCode == 27) {\r\n window.close();\r\n return true;\r\n }\r\n}\r\n document.onkeydown = _CloseOnEsc;\r\n<" + "/script>");
	win.document.write("<img src=\"" + src +  "\"  onclick=\"javascript: window.close();\" style=\"cursor: pointer;\" />");
	win.document.write("</td></tr></table></body></html>");
	
	win.document.close();
	return false;
}
