
function openWin( URL, winName, winWidth, winHeight )
{     
   OpenWindow.document.write("<body marginwidth=\"0\" marginheight=\"0\" leftmargin=\"0\" rightmargin=\"0\" topmargin=\"0\" bgcolor=\"#FFFFCC\" link=\"#000000\" vlink=\"#000000\" background=\"img/aida-cream.GIF\">")
}     

function openWin2( URL, winName, winWidth, winHeight, pDesc )
{     
   var OpenWindow=window.open( URL, winName, "resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,width=" + ( winWidth + 0 ) + ",height=" + ( winHeight + 35 ));
   OpenWindow.document.write("<html>\n<head>")
   OpenWindow.document.write("<title>Debi's Cross Stitch</title>")
   OpenWindow.document.write("</head>")
   OpenWindow.document.write("<body marginwidth=\"0\" marginheight=\"0\" leftmargin=\"0\" rightmargin=\"0\" topmargin=\"0\" text=\"#FFFFCC\" bgcolor=\"#000000\" link=\"#FFFFFF\" vlink=\"#FFFFFF\" alink=\"#FFCCCC\">")
   OpenWindow.document.write("<div align=\"center\" style=\"font-family: verdana, arial, helvetica, sans-serif; font-size: 10pt;\">")
   OpenWindow.document.write("<p style=\"margin-top: 0em; margin-bottom: 0em;\"><img src=\"" + URL + "\" width=\"" + winWidth + "\" height=\"" + winHeight + "\" alt=\"\" /><br />")
   OpenWindow.document.write("<strong>" + pDesc + "</strong><br /><a href=\"\" onClick=\"window.close()\">click here to close window</a></p></div>")
   OpenWindow.document.write("</body>\n</html>")
}     

