﻿function hideapplyonline() {
    document.getElementById('ApplyLogoArea').style.display = 'none';
}


function hideapplyonline() {
    document.getElementById('ApplyLogoArea').style.display = 'none';
    document.getElementById('Left').style.height = '850px';
    document.getElementById('Right').style.height = '850px';
   document.getElementById('Footer').style.margin = '550px 0';
}

function jsnoAlpha(obj) {
    reg = /[^0-9.,]/g;
    obj.value = obj.value.replace(reg, "");
}

function jsAlpha(obj) {
    reg = /[0-9.,]/g;
    obj.value = obj.value.replace(reg, "");
}

function jsValidEmail(obj) {
    if (!obj.valueOf == '') {
        reg = /^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
        if (!reg.test(obj.value)) {
            alert('Please enter a valid Email address');
            obj.focus();
        }
    }
}

function jsValidPostCode(obj) {
    if (!obj.value == '') {
        reg = /^([A-PR-UWYZ]([0-9]{1,2}|([A-HK-Y][0-9]|[A-HK-Y][0-9]([0-9]|[ABEHMNPRV-Y]))|[0-9][A-HJKS-UW])\ [0-9][ABD-HJLNP-UW-Z]{2}|(GIR\ 0AA)|(SAN\ TA1)|(BFPO\ (C\/O\ )?[0-9]{1,4})|((ASCN|BBND|[BFS]IQQ|PCRN|STHL|TDCU|TKCA)\ 1ZZ))$/;
        if (!reg.test(obj.value.toUpperCase())) {
            alert('Please enter a valid post code');
            obj.focus();
        }
    }
}

