function Validate1()
{
	if (document.Searchform.txtCompName.value=="")
	{
		alert(" Please enter Company Name");
		document.Searchform.txtCompName.focus();
		return false;
	}
else
    {
    return true;
    }
}

function Validate()
{
	if (document.Searchform1.txtCatName.value=="")
	{
		alert("Please enter Category Name");
		document.Searchform1.txtCatName.focus();
		return false;
	}
else
    {
    return true;
    }
}

function NewWindow(mypage)
{
// 600 397
var scroll = 'yes'
var winl = (screen.width - 800) / 2;
var wint =    (screen.height - 497)  /2;
winprops='height='+497+',width='+800+',top='+wint+',left='+winl+',scrollbars='+scroll+','
win = window.open(mypage, "myname", winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

