// JavaScript Document
function btn_overs(sel, newImage){
	var theImage=document.getElementById(sel);
	theImage.src=newImage;
}

function productSearchFormSubmit(){
	var selColor=document.getElementById("color").value;
	var selMaterial=document.getElementById("material").value;
	//var errorMess='Wait!';
//	if (selColor=='' && selMaterial==''){
//		errorMess+="\n"+'You must select a color and/or a material.';	
//	}
//	if (errorMess!='Wait!'){
//		alert (errorMess);	
//	}else{
		document.productSearchForm.submit();
//	}
}
