function checkQuantity() {
	if (document.orderform.quantity.value == "") {
	alert("Please enter a quantity!");
	return (false);
}
	if (document.orderform.logoposition.value == "") {
	alert("Please choose a Logo Position!");
	return (false);
	}
}

function checkQuantityNoPosition() {
	if (document.orderform.quantity.value == "") {
	alert("Please enter a quantity!");
	return (false);
}
}

function changePrice() {
logoPrice = 0
	if (document.orderform.logoposition.value == "") {
		alert("Choose a Logo Position!");
		return (false);
	}
	if (document.orderform.logoposition.value == "A") {
		logoPrice = 5;
	}
	if (document.orderform.logoposition.value == "B") {
		logoPrice = 0;
	}
	if (document.orderform.logoposition.value == "C") {
		logoPrice = 5;
	}
	if (document.orderform.logoposition.value == "D") {
		logoPrice = 0;
	}
	if (document.orderform.logoposition.value == "E") {
		logoPrice = 0;
	}
	if (document.orderform.logoposition.value == "F") {
		logoPrice = 0;
	}
document.orderform.finalprice.value = eval(document.orderform.price.value) + logoPrice;
alert(document.orderform.finalprice.value);
}

function openNewWindow(theWindow) {
newWin=window.open(theWindow,'LSWindow','width=500,height=440,location=no,toolbars=no,scrollbars=no,status=no');
newWin.focus();
}

function openLogoWindow(theWindow) {
newWin=window.open(theWindow,'LogoWindow','width=620,height=535,location=no,toolbars=no,scrollbars=no,status=no');
newWin.focus();
}

function openProductWindow(theWindow) {
newWin=window.open(theWindow,'ProductWindow','width=620,height=610,location=no,toolbars=no,scrollbars=no,status=no');
newWin.focus();
}

function openProduct2Window(theWindow) {
newWin=window.open(theWindow,'Product2Window','width=570,height=520,location=no,toolbars=no,scrollbars=no,status=no');
newWin.focus();
}