    // LOGIN FORM VALIDATION \\
    function ValidateLogin(){
    	if (document.frm.username.value=="") {
    		alert("Please enter your username.")
    		document.frm.username.focus()
    	return false }
    	if (document.frm.password.value=="") {
    		alert("Please enter your password.")
    		document.frm.password.focus()
    	return false }	
    }
    
    // SET-UP VALIDATION \\
    function ValidateSETUP(){
    	if (document.frm.msg.value=="") {
    		alert("Please enter message content.")
    		document.frm.msg.focus()
    	return false }
    }
     
    // SET-UP VALIDATION \\
    function ValidateEXT(){
    	if (document.frm.ext.value=="") {
    		alert("Please enter extention.")
    		document.frm.ext.focus()
    	return false }
    }     
        
    // DELETE LOG ? \\
    function DeleteExt(ID) {
    	if (confirm("Delete Extention ?")) {
    		window.location.replace("ext_del.asp?ID=" + ID );
    	}
    }


    // DELETE LOG ? \\
    function DeleteLog(ID) {
    	if (confirm("Delete Activity Log ?")) {
    		window.location.replace("log_del.asp?ID=" + ID );
    	}
    }
            
