// This function opens a window for the Bill of Lading.
function billGo(vURL)
{
	var bill;
	bill = window.open(vURL, 'billw', 'toolbar=no,location=no,scrollbars=yes,fullscreen=no,status=no,width=750,height=570,resizable=yes');
	bill.focus();
}
// This function opens a window for WEBE Logistics.
function webeGo(vURL)
{
	var webe;
	webe = window.open(vURL, 'webew', 'toolbar=no,location=no,scrollbars=yes,fullscreen=no,status=no,width=670,height=650');
	webe.focus();
}