
	function openWindow(page) {
		genericWindow(page, 900, 500, -1);
	}

	var popWin;
	function genericWindow(page, width, height, scrollbars) {  
		if (scrollbars) scrollbars = "yes";
		else scrollbars = "no";

	        if (popWin != null && !popWin.closed) popWin.close();
	        popWin = window.open(page,"PopUp","width="+width+",height="+height+",dependent=yes,resizable,scrollbars=" + scrollbars); 
	}

	var w_status;
	function windowPopup(lang) 
	{
	  //if (w_status == null || w_status.closed == true)
	  //    w_status = window.open("/helpsection/inventory.asp","_blank","toolbar=no,location=yes,directories=yes,status=no,menubar=yes,scrollbars=yes,resizable=no,copyhistory=no,height=500,width=500");
	  //else
	  //    w_status.focus();
	}
	
	var w_status_shippable;
	function windowPopupShippable() 
	{
	if (lang == "FR")
	{
	  if (w_status_shippable == null || w_status_shippable.closed == true)
	      w_status_shippable = window.open("/help/popuphelp/popup_usshippable_fr.asp","_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,height=450,width=450");
	  else
	      w_status_shippable.focus();
	}
	else
	{
	  if (w_status_shippable == null || w_status_shippable.closed == true)
	      w_status_shippable = window.open("/help/popuphelp/popup_usshippable_en.asp","_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,height=450,width=450");
	  else
	      w_status_shippable.focus();
	}}
	
	
	var varNewWin;
	function LearnMorePopup(page, width, height, scrollbars) {  
		if (scrollbars) scrollbars = "yes";
		else scrollbars = "no";

	        if (varNewWin != null && !varNewWin.closed) 
				{
				varNewWin.focus();
				varNewWin.open(page,"PopUp","width="+width+",height="+height+",dependent=yes,resizable,scrollbars=" + scrollbars); 
				}
			else
				{
				varNewWin = window.open(page,"PopUp","width="+width+",height="+height+",dependent=yes,resizable,scrollbars=" + scrollbars); 
				}
		}
		
	var varNewWin1;
	function LearnMoreWindow(page, scrollbars) {  
		if (scrollbars) scrollbars = "yes";
		else scrollbars = "no";

	        if (varNewWin1 != null && !varNewWin1.closed) 
				{
				varNewWin1.focus();
				varNewWin1.open(page,"PopUp"); 
				}
			else
				{
				varNewWin1 = window.open(page,"PopUp"); 
				}
		}