// JavaScript Document

function searchValidate(){
	form = document.forms["search"];
	if (form.elements["keywords"].value==""){
		alert("Please enter search keywords");
		return false;
	}
	else{
		return true;
	}
}

function checkDisclaimer(){
	form = document.forms["addtocart"];
	if (form.elements["Disclaimer"].checked == false){
		alert("Please agree to disclaimer by clicking the checkbox")
	}else{
		form.submit();
	}
}

function openWindow(url,name,width,height,scrollbars,resizable){
  window.open(url,name,'width='+width+',height='+height+',scrollbars='+scrollbars+',resizable='+resizable)
}