function checkvalues() {
	tempvar = document.MyForm.contact.value
	if (tempvar.length == 0) {
		window.alert("You must enter a Name");
		return false;
	}
	tempvar = document.MyForm.zip.value
	if (tempvar.length == 0) {
		window.alert("You must enter a Zip Code");
		return false;
	} 
	tempvar = document.MyForm.phone.value
	if (tempvar.length == 0) {
		window.alert("You must enter a Phone Number");
		return false;
	} 
	tempvar = document.MyForm.email.value
	if (tempvar.length == 0) {
		window.alert("You must enter a Email Address");
		return false;
	} 
	tempvar = document.MyForm.project.value
	if (tempvar.length == 0) {
		window.alert("You must select a Project");
		return false;
	}
	tempvar = document.MyForm.qty1.value
	if (tempvar.length == 0) {
		window.alert("You must enter a Quantity");
		return false;
	}
	tempvar = document.MyForm.finsize.value
	if (tempvar.length == 0) {
		window.alert("You must enter a Finished Size");
		return false;
	}
	tempvar = document.MyForm.stock.value
	if (tempvar.length == 0) {
		window.alert("You must enter a stock");
		return false;
	}   
	tempvar = document.MyForm.colors.value
	if (tempvar.length == 0) {
		window.alert("You must select the Colors");
		return false;
	}   
}