function openpdf(path){
	pdf = window.open(path,"Pdf_Window","menubar=0,toolbar=0,location=0,status=0,scrollbars=1,resizable=1,top=0,left=0");
	pdf.focus();

}

function openphoto(path,w,h){
	aa = window.open("","","width="+w+",height="+h+",scrollbars=0,resizable=0,left=0,top=0");
	aa.document.write("<html><head><title></title>");
	aa.document.write("</head>");
	aa.document.write("<body bgcolor='#ffffff' leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
	aa.document.write("<table border=0 cellpadding=10 cellspacing=0 align=center><tr>");
	aa.document.write("<td><img src='" + path + "' width=" + w + " height=" + h + " border=0></td></tr>");
	aa.document.write("</table>");
	aa.document.write("</body>");
	aa.document.write("</html>");
}

function openwin(path, w, h){
	htm = window.open(path,"","width="+w+",height="+h+",top=0,left=0,menubar=no,toolbar=no,location=no,status=no,scrollbars=1,resizable=1");
	htm.focus();
}

function showHTML(path){
	x = "width="+(screen.availWidth-160)+",height="+(screen.availHeight-150)+",menubar=no,toolbar=no,location=no,status=no,scrollbars=1,resizable=1,left=140,top=100";
	html = window.open(path,'showHTML',x);
	html.focus();
}


