/*
'Copyright (C) 2009 Active 770, Inc. and Hanes Supply
'All rights reserved.

*/
  var PopUpWindow;
  function PopUpImage(ImageName) {
  if (!PopUpWindow || PopUpWindow.closed){
		
	
  PopUpWindow=window.open("","","left=10,top=10,status=no,toolbar=no,directories=no,menubar=no,location=no,resizable=yes,scrollbars=yes");   
  PopUpWindow.document.write("<html><head><title>Product Image</title></head>");
  PopUpWindow.document.writeln("<script language='javascript'>");
  PopUpWindow.document.writeln("</script>");  
  PopUpWindow.document.writeln("");

  PopUpWindow.document.writeln('<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" onLoad="var iheight=560;if (document.images[0].height < 470) iheight = document.images[0].height + 90;window.resizeTo(document.images[0].width + 30,iheight)">');   
  PopUpWindow.document.writeln('<img  src="'+ImageName+' " border="0" >');
	    
  PopUpWindow.document.writeln("<br><p align='center'><a href='javascript:window.close();'><b>Close Window</b></a></p>");
  PopUpWindow.document.writeln('</body>');
  PopUpWindow.document.writeln('</html>');
  PopUpWindow.document.close();
  PopUpWindow.focus(); 
  }
	else{
		// close and re-open
		PopUpWindow.close();
		PopUpWindow = PopUpImage(ImageName);
	}
}

var myWindImg;
function WindImg(img){
	var fe = "scrollbars=yes,menubar=no,resize=no,width=600px,height=600px";
	var winName = "windImg";
	var url = "imgLrg1.aspx?img=" + img ;
		
	// if window not open then open
	if (!myWindImg || myWindImg.closed){
		myWindImg = window.open(url,winName,fe);
	}
	else{
		// close or bring to front
		myWindImg.close();
		myWindImg = window.open(url,winName,fe);
	}
}
/*
function PopUp(ImageName) {
  PopUpWindow=window.open("","","left=80,top=80,status=no,toolbar=no,directories=no,menubar=no,location=no,resizable=no,scrollbars=no");   
  PopUpWindow.document.write("<html><head><title>Custom Product Artwork</title></head>");
  if (navigator.appName == "Microsoft Internet Explorer") 
     PopUpWindow.document.writeln('<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" onLoad="window.resizeTo(document.images[0].width + 10,document.images[0].height + 80)">');   
  else
        PopUpWindow.document.writeln('<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" onLoad="window.resizeTo(document.images[0].width + 10,document.images[0].height + 80)">');  
	    PopUpWindow.document.writeln('<img  src="'+ImageName+' " border="0" >');
	    
  PopUpWindow.document.writeln("<br><p align='center'><a href='javascript:window.close();'><b>Close Window</b></a></p>");
  PopUpWindow.document.writeln('</body>');
  PopUpWindow.document.writeln('</html>');
  PopUpWindow.document.close();
  PopUpWindow.focus(); 
}

function PopUpPromo() {
  var PopUpWindow;
  
  PopUpWindow=window.open("","","height=280,width=380,left=80,top=80,status=no,toolbar=no,directories=no,menubar=no,location=no,resizable=no,scrollbars=no");   
  PopUpWindow.document.write('<html><head><title>Promotion Code/Key Code</title></head>');
  PopUpWindow.document.writeln('<body>');  
  PopUpWindow.document.writeln('<br /><p align="left">Occasionally you may get a catalog, direct mail piece or e-mail with a special offer. To redeem that special offer, you may need to provide the Promotion Code/Key Code in this space on the web order form.</p><p align="left">If you’re not receiving these special offers please register at www.LSS.com. By registering you’ll be among the first to know about sale items and new products. You will also be registered in our monthly drawing to win valuable prizes from LSS. Register online TODAY!</p>');
  PopUpWindow.document.writeln("<br /><p align='center'><a href='javascript:window.close();'><b>Close Window</b></a></p>");
  PopUpWindow.document.writeln('</body>');
  PopUpWindow.document.writeln('</html>');
  PopUpWindow.document.close();
  PopUpWindow.focus(); 
}

function PopUpAvail(url) {
  window.name="parentwin";
  var PopUpWindow;
  
  PopUpWindow=window.open(url,"availability","height=320,width=420,left=80,top=80,status=no,toolbar=no,directories=no,menubar=no,location=no,resizable=yes,scrollbars=no");   
  PopUpWindow.focus();
  if (!PopUpWindow.opener)
    PopUpWindow.opener = self; 
}

function PopUpHelp() {
  var PopUpWindow;
  
  PopUpWindow=window.open("","","height=330,width=380,left=80,top=80,status=no,toolbar=no,directories=no,menubar=no,location=no,resizable=no,scrollbars=no");   
  PopUpWindow.document.write('<html><head><title>Express Order Help</title></head>');
  PopUpWindow.document.writeln('<body>'); 
  PopUpWindow.document.writeln('<h2>Express Ordering</h2>');
  PopUpWindow.document.writeln('<p align="left">Express ordering is used when you already know what the Lab Safety Supply product numbers are. You may be using a Lab Safety Supply catalog or are an experienced customer who just knows the product numbers that you order on a regular basis.<br><br>');
  PopUpWindow.document.writeln('Simply enter the Lab Safety Supply product number you\'d like to order including dashes and suffixes for size/colors, type the quantity, and click on the cart. It\'s that easy!<br>');
  PopUpWindow.document.writeln('You\'ll be guided through the checkout process with our clear, easy-to-use interface.</p>');
  PopUpWindow.document.writeln("<p align='center'><a href='javascript:window.close();'><b>Close Window</b></a></p>");
  PopUpWindow.document.writeln('</body>');
  PopUpWindow.document.writeln('</html>');
  PopUpWindow.document.close();
  PopUpWindow.focus(); 
}
*/
