var imgwindow;
var imgwh = 0, imgww = 0;

function viewimg(url, title, imgw, imgh, bgcolor)
{
   var pwidth, pheight;

   if ( !imgwindow || imgwindow.closed )
   {
      pwidth=imgw+30;
      pheight=imgh+50;
      imgwindow=window.open('','htmlname','width=' + pwidth +',height=' +pheight + ',resizable=1,top=50,left=10');
      imgwh=imgh;
      imgww=imgw;
   }

   if (imgwh!=imgh || imgww!=imgw )
   {
      pwidth=imgw+30;
      pheight=imgh+90;
      imgwindow.resizeTo(pwidth, pheight);
      imgwh=imgh;
      imgww=imgw;
   }

   imgwindow.document.clear();
   imgwindow.focus();
   imgwindow.document.writeln('<html> <head> <title>' + title + '<\/title>');
   imgwindow.document.writeln('<script language=\"JavaScript1.2\" type=\"text/javascript\">');
   imgwindow.document.writeln('function printchart() {');
   imgwindow.document.writeln('document.getElementById(\"header\").style.display = \"none\";');
   imgwindow.document.writeln('window.print();');
   imgwindow.document.writeln('document.getElementById(\"header\").style.display = \"block\";');
   imgwindow.document.writeln('}<\/script>');
   imgwindow.document.writeln('<style>div a{ color: #0000FF; text-decoration: underline;} div a:visited{color: #0000FF;text-decoration: underline;} div a:active{color: #800080;text-decoration: underline;} div a:hover{color: #FF0000;text-decoration: underline;}<\/style>');
   imgwindow.document.writeln('<\/head>');
   imgwindow.document.writeln('<body topmargin=0 marginheight=0 leftmargin=0 marginwidth=0 bgcolor= \"' + bgcolor + '\"> <center>');
   imgwindow.document.writeln('<div style=\"height:30px;\">');
   imgwindow.document.writeln('<div id=\"header\" style=\"padding-top:5px;\"><div style=\"font-family:Arial, Helvetica, sans-serif; font-size:11px; font-weight:bold; padding-left:10px; float:left\"><a href=\"javascript:void(0);\" onClick=\"printchart()\">Print<\/a><\/div>');
   imgwindow.document.writeln('<div style=\"font-family:Arial, Helvetica, sans-serif; font-size:11px; font-weight:bold; padding-right:10px; float:right\"><a href=\"#\" onClick=\"window.close()\">Close<\/a><\/div><\/div><\/div>');
   imgwindow.document.writeln('<div align=\"center\" id=\"Img\"><img src=' + url + ' title=\"' + title + '\" alt=\"' + title + '\" ><\/div>');
   imgwindow.document.writeln('<\/center> <\/body> <\/html>');
   imgwindow.document.close();
   imgwindow.focus();
}

//<A HREF="javascript:viewimg('http://www.workngear.com/cdocs/WKNG/images/brn/MAGNUM.2.jpeg','Size Chart',600,335,'white')">View Size Chart</A>
