/*Javascript Document */
	var win2;
	
	
 //Inventory Check Popup Window
 function invCheckPopup(queryurl) {
     var iMyWidth;
     var iMyHeight;
     //half the screen width minus half the new window width (plus 5 pixel borders).
     iMyWidth = (window.screen.width / 2) - (800);
     //half the screen height minus half the new window height (plus title and status bars).
     iMyHeight = (window.screen.height / 2) - (750);
     
     //Open the window.
     win2 = window.open(queryurl, "InventoryCheck", "status=0,height=820,width=800,resizable=1,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=yes,location=no,directories=no");
 }
  //Inventory Check Popup Window
 function shippingEstimator(queryurl) {
     var iMyWidth;
     var iMyHeight;
     //half the screen width minus half the new window width (plus 5 pixel borders).
     iMyWidth = (window.screen.width / 2) - (800);
     //half the screen height minus half the new window height (plus title and status bars).
     iMyHeight = (window.screen.height / 2) - (750);
     
     //Open the window.
     win2 = window.open(queryurl, "InventoryCheck", "status=0,height=820,width=800,resizable=1,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=yes,location=no,directories=no");
 }

 // Redirect for Sample Order - OLD, USE RedirectURL BELOW FOR REDIRECTS
 function SampleRedirectURL(redirectURL) {
               
     window.location = redirectURL;
     win2.close();
	
    
 }
// REDIRECT FUNCTION - CLOSES POPUP, REDIRECTS PARENT WINDOW
 function RedirectURL(redirectURL) {
               
     window.location = redirectURL;
     win2.close();
	
    
 }