/************************* End of Search Validation ***********************/
/**************************************************************************/
function validate_login(){
    if(document.login.username.value == ""  || document.login.password.value == ""){
        alert ( "Please Enter Your Username and Password" );
        return false;
    }
    return true;
}
/**************************************************************************/
function send(URL){
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=480,height=280,left = 250,top = 180');");
}
