function PopUp(page, w, h) 
{
	window.open(page, "PopUp","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width="+w+",height="+h+",top=0,left=0");
}

function LargePopUp(imagepath, w, h){
	win_h = h + 50;
	win_w = w + 75;
	win_para = "toolbar=no,menubar=no,width=" + win_w + " ,height=" + win_h;
	popup=open("", "", win_para);
	popup.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n');
	popup.document.write('<html>\n');
	popup.document.write('<head>\n');
	popup.document.write('<title>Large Image</title>\n');
	popup.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\n');
	popup.document.write('</head>\n');
	popup.document.write('<body>\n');
	popup.document.write('<div align="center"><img src="' + imagepath + '" width="' + w + '" height="' + h + '" border="0" alt=""><br><br>\n');
	popup.document.write('<a href="javascript:close()" style="color: #000000; font-size: 12px;">Close</a></div>\n');
	popup.document.write('</body>\n');
	popup.document.write('</html>\n');
}

