//<!---
// functions to validate user selected product option
function valRequired() {
	if (document.order_form.product_option_1.value == "") 
		{
			alert("Please select one of the options before adding to your cart.");
			document.order_form.product_option_1.focus();
			document.order_form.product_option_1.style.backgroundColor = "#ffffcc";
		}
	else 
		document.order_form.submit();
}

function newWindow() {
	window.open("","windowname","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=450,height=425,top=30,left=30");
}

function popUpVideo(url) {
   winStats='toolbar=no,location=no,directories=no,menubar=no,'
   winStats+='scrollbars=no,width=358,height=420'
   if (navigator.appName.indexOf("Microsoft")>=0) {
      winStats+=',left=150,top=150'
    }else{
      winStats+=',screenX=150,screenY=150'
    }
   teaseWin=window.open(url,"",winStats)
}

//--->
