﻿function zoompopsizing(imgsrc, wid, ht, text, act) {
  var winwid=screen.width;
  var winht=screen.height;
  zoom1=window.open('','zoom1','width='+winwid+',height='+winht+',left=0,top=0,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes');
  zoom1.document.open();
  zoom1.document.write("<html><head><title>Image Zoom for "+text+"<\/title><meta http-equiv=\"pragma\" content=\"no-cache\"><meta http-equiv=\"expires\" content=\"-1\"><link rel=\"StyleSheet\" href=\"\/lib\/"+act+"\/styles-rev01.css\" type=\"text\/css\" media=\"screen\"><\/head>");
  zoom1.document.write("<body>");
  zoom1.document.write("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
  zoom1.document.write("<tr><td colspan=\"4\"><img src=\"\/lib/"+act+"001pixel.gif\" alt=\" \" border=\"0\" width=\"1\" height=\"12\"><\/td><\/tr>");  
  zoom1.document.write("<tr valign=\"top\"><td>&nbsp;<\/td><td><span class=\"pagehead\">"+text+"&nbsp;&nbsp;-&nbsp;&nbsp;Sizing Chart<\/span><\/td><td align=\"right\">&nbsp;&nbsp;<a href=\"javascript:window.close();\">Close Window<\/a><\/td><td>&nbsp;<\/td><\/tr>");
  zoom1.document.write("<tr><td colspan=\"4\"><img name=theimg src=\""+imgsrc+"\" alt=\""+text+"\" border=\"0\" width=\""+wid+"\" height=\""+ht+"\" vspace=\"12\" hspace=\"12\"><\/td><\/tr><\/table>");
  zoom1.document.write("<\/body><\/html>");
  zoom1.focus();
}
