function validate()
{
	
	     var f=document.search;
	 
		 if(f.search_pro.value=="select")
		 {
			 alert("Please select your search item");
			 f.search_pro.focus();
			 return false;
		 }
		 if(f.search_pro.value=="category")
		 { 
			 if(f.cat_name.value=="null")
		 {
			 alert("Please select the category name");
			 f.cat_name.focus();
			 return false;
		 }
	 }
// 	  if(f.search_pro.value=="metal")
// 		 { 
// 			 if(f.metal.value=="null")
// 		 {
// 			 alert("Please select the metal type");
// 			 f.metal.focus();
// 			 return false;
// 		 }
// 	 }
// 	  if(f.search_pro.value=="stone")
// 		 { 
// 			 if(f.stone.value=="null")
// 		 {
// 			 alert("Please select the stone type");
// 			 f.stone.focus();
// 			 return false;
// 		 }
// 	 }
	 if(f.search_pro.value=="color")
		 { 
			 if(f.color.value=="")
		 {
			 alert("Please enter the color");
			 f.color.focus();
			 return false;
		 }
	 }
	  if(f.search_pro.value=="product")
		 { 
			 if(f.product.value=="")
		 {
			 alert("Please enter the product type");
			 f.product.focus();
			 return false;
		 }
	 }
	 document.search.submit();
}

function faction()
{

	document.form1.user.focus();
		
}