function editCustomer() {
	window.open('customers.asp?vCUSTNMBR='+document.f.vCUSTNMBR.options[document.f.vCUSTNMBR.selectedIndex].value,'','height=2000, width=2000,scrollbars=yes,resizable=yes,menubar=no,location=no,status=no,directories=no,toolbar=no');
}
function CheckItem() {
	var c = new String(document.itemform.ItemID.value);
	if(c.substr(0,2) == "L-"){
		document.itemform.a.selectedIndex = 1;
	}
	if(c.substr(0,2) == "Q-"){
		document.itemform.a.selectedIndex = 0;
	}
}