function checkform()
{
var searchtypestr=document.getElementById("searchtype").value;
var actionurl="";

if (document.book.keywords.value.length==0){
		alert("ERROR!!You have not filled in KeyWord");
		document.book.keywords.focus();
		return false;
	}
	if (document.book.SearchType.value==0){
		alert("ERROR!!Plase select Products");
		document.book.SearchType.focus();
		return false;
	}





if(searchtypestr=="Shoes")
{
    actionurl="/shoes/search.asp"
}
else if(searchtypestr=="Watch")
{
    actionurl="/Watch/search.asp"
}
else if(searchtypestr=="Handbag")
{
    actionurl="/Handbag/search.asp"
}
else if(searchtypestr=="Sunlasses")
{
    actionurl="/Sunlasses/search.asp"
}
else if(searchtypestr=="Apparel")
{
    actionurl="/Apparel/search.asp"
}
else if(searchtypestr=="Pants")
{
    actionurl="/Pants/search.asp"
}
else if(searchtypestr=="Painting")
{
     actionurl="/Painting/search.asp"
}
else if(searchtypestr=="Jewelry")
{
    actionurl="/Jewelry/search.asp"
}
else if(searchtypestr=="Others")
{
    actionurl="/Others/search.asp"
}


book.action=actionurl;
book.method="post";
book.submit();
}

function checkfor()
{

if (document.Order.Orderid.value.length==0){
		alert("ERROR!!You have not filled in your order id");
		document.Order.Orderid.focus();
		return false;
	}
	
	return true;
}

