// JavaScript Document


 function searchcall()
 {
 
 if(document.searchform2.cat=='')
{
alert('Select Category ');
searchform2.cat.focus();
return false;
}
else if(document.searchform2.Price_Range=='')
{
alert('Select Price Range ');
searchform2.Price_Range.focus();
return false;
}

else 
//return true;
 
document.searchform2.method='post';
document.searchform2.action='searchval.php';
document.searchform2.submit();

}	

 function wordsearchcall()
 {
if(document.searchform2.searchword=='')
{
alert('enter word');
searchform2.searchword.focus();
}
else
document.searchform2.method="post";
document.searchform2.action='wordsearchvalpage.php';
document.searchform2.submit();
}	

function checkchar(e)
			{
				if(e.keyCode<65 || e.keyCode>123)
				{
					e.keyCode=0;
					alert("Please Enter charactors only")
				}
				if(e.keyCode==65)
				{
					e.keyCode=0;
					alert("Please Enter Only charactors")
				}
			}
			
			

