// JavaScript Document

function prodselect() { //v2.0
	if (document.getProduct.product.options[document.getProduct.product.selectedIndex].value == "") {
		return false;
	} else {
		window.location = ('product-viewer.asp?pid=' + document.getProduct.product.options[document.getProduct.product.selectedIndex].value);
	}
}

function bespokeCompat() { //v2.0
	if (document.bespoke.headprod.options[document.bespoke.headprod.selectedIndex].value == "") {
		window.alert("Please select a Headland product");
		return false;
	} else {
		document.bespoke.submit();
	}
}

