// ################################### validation ###############################
function ValidateForm() {
        var Check = 0;
        if (document.LOGIN.UserName.value == '') { Check = 1; }
        if (document.LOGIN.PassWord.value == '') { Check = 1; }

        if (Check == 1) {
            alert("Please enter your name and password before continuing");
            return false;
        } else {
            document.LOGIN.submit.disabled = true;
            return true;
        }
    }


// Open window

function Popup(url)
{
		window.open(url,"Window" + Math.round(Math.random()*10000)+1,'scrollbars=yes,width=400,height=320')
}

