function sendmail(url, name) 
{
popupWin = window.open(url, name,'status=no,resize=yes,toolbar=no,scrollbars=no,width=420,height=310,top=20,left=10')
}

function help(url, name) 
{
popupWin = window.open(url, name,'status=no,resize=yes,toolbar=no,scrollbars=no,width=350,height=220,top=20,left=10')
}

function pass(url, name) 
{
popupWin = window.open(url, name,'status=no,resize=yes,toolbar=no,scrollbars=no,width=350,height=160,top=20,left=10')
}
function bimg(url, name) 
{
popupWin = window.open(url, name,'status=no,resize=yes,toolbar=no,scrollbars=no,width=400,height=300,top=20,left=10')
}


function CheckForm () { 
	//If there is aproblem with the form then display an error
	if (document.formlogin.LeMail.value == "") {
		msg = "Kindly insert your UserID."
		alert(msg);
		return false;
	}
	if (document.formlogin.password.value == "") {
		msg = "Kindly insert your Password."
		alert(msg);
		return false;
	}
	return true;
	}
	
	function CheckSform () { 
       //If there is aproblem with the form then display an error
    if (document.frmInterSearch.search.value == "") {
        msg = "Please enter at least one keyword to search for."
        alert(msg);
        return false;
    }
        return true;
    }
