
function checkEmail(myForm) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(myForm.address.value)){
return (true)
}
alert("Invalid E-Mail Address! Please re-enter.")
return (false)
}


function openWin(URL) {
    aWindow = window.open(URL,"awindow", "toolbar=no,width=400,height=400,status=no,scrollbars=yes,resizable=yes,menubar=no");
}

function openWin2(URL) {
    aWindow = window.open(URL,"awindow", "toolbar=no,width=600,height=400,status=no,scrollbars=yes,resizable=yes,menubar=no");
}

function openWin3(URL) {
    aWindow = window.open(URL,"awindow", "toolbar=no,width=400,height=200,status=no,scrollbars=yes,resizable=yes,menubar=no");
}

