function openPopup(theURL,winName,option){

	winName = "pop";

	features = "menubar=0,toolbar=0,status=0,location=0,resizable=yes," + option;

	var newPopup = window.open("",winName,features);

	newPopup.document.write('<style type="text/css">body {margin: 0px; background-color:#643315; }</style>');

	newPopup.document.write('<table width="100%" height="100%"  border="0" cellpadding="0" cellspacing="0">');

	newPopup.document.write('<tr><td align="center" valign="center">');

	newPopup.document.write('<img src="' + theURL + '">');

	newPopup.document.write('</td></tr></table>');

	newPopup.document.close();

}


