function MM_openBrWindow(theURL,winName,features) {
  window.name = "main";
  var page = "popup.html";
  smallWin=window.open(theURL,winName,features);
}

function ZoomPop(theURL) {
if ((navigator.appVersion.indexOf("AOL") >0)) {
  MM_openBrWindow(theURL,"ZoomPopUp",'scrollbars=yes,resizable=yes,width=640,height=600,left=30,top=30');
} else if (navigator.appVersion.indexOf("Mac") != -1) {
  MM_openBrWindow(theURL,"ZoomPopUp",'scrollbars=yes,resizable=yes,width=640,height=600,left=30,top=30');
} else {

PopUp=window.open("","ZoomPop",'scrollbars=yes,resizable=yes,width=640,height=600,left=10,top=10');
	PopUp.document.write ("<HTML><HEAD><TITLE>");
	PopUp.document.write ("Image Zoom");
	PopUp.document.write ("</TITLE></HEAD>");
	PopUp.document.write ("<body border=0 TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 BGCOLOR=#FFFFFF TEXT=#333333 LINK=#990000 VLINK=#336699>");
	PopUp.document.write ("<table cellpadding=5 cellspacing=0 bgcolor=#FF0000 border=0 width=100%><tr><td align=right><font size=1 face='Verdana,Arial,Sans-Serif'>");
PopUp.document.write ("<A HREF='JavaScript:this.close()'><b><font color=white>Close Window</font></b></a></font></td></tr></table><br><br>");
	PopUp.document.write ("<P ALIGN=CENTER>");
	PopUp.document.write ("<A HREF='JavaScript:this.close()'><IMG BORDER=0 HSPACE=0 VSPACE=0 SRC='");
	PopUp.document.write (theURL);
	PopUp.document.write ("'></a>");
	PopUp.document.write ("</P>");
	PopUp.document.write ("<br><br>");
        PopUp.document.write ("</BODY></HTML>");

	}
}


function SwatchesPop(theURL) {
    MM_openBrWindow(theURL,'ZoomPopUp','scrollbars=yes,resizable=yes,width=425,height=500,left=200,top=50');
}



