// JavaScript Document

function seearch(pth)
{
 if (kwds.value=="")
 {
	alert ("Please Specify Keywords to Search");
	kwds.focus();
 }
 else
 {
	window.open(pth+'/resultset.php?keywords='+kwds.value);
 }
}

function defaultaction(pth)
{
	a=event.keyCode;
    if (a==13)
	{
	  seearch(pth);
	}
}

function seearch2(pth)
{
 if (kwds.value=="")
 {
	alert ("Please Specify Keywords to Search");
	kwds.focus();
 }
 else
 {
	window.location.href=pth+'/resultset.php?keywords='+kwds.value;
 }
}

function defaultaction2(pth)
{
	a=event.keyCode;
    if (a==13)
	{
	  seearch2(pth);
	}
}