var mywindow;

function new_window(name,locn, xx, yy, desc)
{
xsize = xx+35;
ysize = yy+140;
if (mywindow && !mywindow.closed) {
mywindow.document.open();
mywindow.document.write('');
mywindow.document.close();
} else {
mywindow = window.open('blank.htm',name,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,MARGINWIDTH=0,MARGINHEIGHT=0,WIDTH=1,HEIGHT=1,screenX=0,screenY=0,left=0,top=0");
}
mywindow.resizeTo(xsize, ysize);
mywindow.document.open();
mywindow.document.write("<HTML><HEAD>");
mywindow.document.write("<TITLE>Detailed Product View</TITLE>");
mywindow.document.write("</HEAD><BODY BGCOLOR=FFFFFF TEXT=000000>");
mywindow.document.write("<CENTER><FONT FACE='Arial' SIZE='1' COLOR='#AAAAAA'>");
mywindow.document.write("<IMG HSPACE=0 VSPACE=0 " + "SRC='" + locn + "' width='" + xx + "' height='" + yy + "'><BR>");
mywindow.document.write(desc);
mywindow.document.write("<br><form><input type='button' value=' Print ' style='color:#505050;font-size:10px;' onclick='javascript:print()'>&nbsp;<input type='button' value=' Close ' style='color:#505050;font-size:10px;' onclick='javascript:window.close()'></form>");
mywindow.document.write("</CENTER>");
mywindow.document.write("</BODY></HTML>");
mywindow.document.close();
mywindow.focus();
}
