/* --------------------
Pop up window for VDI Freight Inc.
Al DiMarzio, HBGraphics
------------------- */
	
var popupWin
function openPopUpWindow(filename, shipment) {
	if (shipment == '')  {
		popupWin = window.open(filename,'popupWin', 'resizable, scrollbars, top=10, left=10, width=425, height=425');
		popupWin.focus();
	}
	if (shipment =='yes')  {
		if (document.shipbox.customerNo.value == '')   {
			alert("Please enter a Customer ID.")
		}
		else {
			
			filename = filename + "?custno="+document.shipbox.customerNo.value;
				//alert(filename)
			if (document.shipbox.shipmentNo.value != '')  {
				filename = filename+"&shipno="+document.shipbox.shipmentNo.value;
			}
		
			popupWin = window.open(filename,'popupWin', 'resizable, scrollbars, top=20, left=20, width=400, height=300');
			popupWin.focus();
		}
	}
}
	

function closePopUpWindow()		{
	if (popupWin && !popupWin.closed)  {
		popupWin.close();
	}
}	
