

function popBlowup(prodName, prodImage)
{
	var blowupWin = window.open("", "IMAGE_POPUP", "width=600,height=600 ,scrollbars=yes ,top=10,left=10");
	blowupWin.document.write("<html>\n");
	blowupWin.document.write("<head>\n");
	blowupWin.document.write('<meta http-equiv="content-type" content="text/html;charset=iso-8859-1" />\n');
	blowupWin.document.write('<meta name="keywords" content="keywords for this page" />\n');
	blowupWin.document.write('<meta name="title" content="document title name" />\n');
	blowupWin.document.write('<title>' + prodName + '</title>\n');
	blowupWin.document.write("<link rel='stylesheet' href='../css.css' type='text/css'>\n");
	blowupWin.document.write("</head>\n");
	blowupWin.document.write('<body topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0" class="bgDefault">\n');
	blowupWin.document.write('<table width="510" border="0" cellspacing="0" cellpadding="0">\n');
	blowupWin.document.write("<tr>\n");
	blowupWin.document.write('<td height="5"><img src="../clear.gif" alt="" height="5" border="0" /></td>\n');
	blowupWin.document.write("</tr>\n");
	blowupWin.document.write("<tr>\n");
	blowupWin.document.write('<td width="5"><img src="../clear.gif" alt="" width="5" border="0" /></td>\n');
	blowupWin.document.write('<td align="center"><div class="pix500"><img src="' + prodImage + '" /></div></td>\n');
	blowupWin.document.write('<td width="5"><img src="../clear.gif" alt="" width="5" border="0" /></td>\n');
	blowupWin.document.write("</tr>\n");
	blowupWin.document.write("</table>\n");
	blowupWin.document.write('<table width="510" border="0" cellspacing="0" cellpadding="0">\n');
	blowupWin.document.write("<tr>\n");
	blowupWin.document.write('<td width="5"><img src="../clear.gif" alt="" width="5" border="0" /><br>&nbsp;</td>\n');
	blowupWin.document.write('<td class="d-r">' + prodName + '</td><td align="right"><a href="javascript:window.close();"><img src="../images/closewindow.gif" width="96" height="19" border="0" /></a></td>\n');
	blowupWin.document.write('<td width="5"><img src="../clear.gif" alt="" width="5" border="0" /></td>\n');
	blowupWin.document.write("</tr>\n");
	blowupWin.document.write("</table>\n");
	blowupWin.document.write("</body>\n");
	blowupWin.document.write("</html>\n");
	blowupWin.document.close();
	blowupWin.focus();
}

var IE = false;
var NS = false;

if (document.all)
	IE = true;
else
	NS = true;


