ENTER YOUR DETAILS BELOW TO LOGIN
if (window.location.href.indexOf('err=1')!=-1) {document.getElementById('err').innerHTML='Your username and/or password were incorrect. Please try again.
'};
document.getElementById('submitButton').onclick=function() {
if (document.getElementById('username').value=='' || document.getElementById('password').value=='') {
if (document.getElementById('username').value=='') {document.getElementById('needUsername').innerHTML='
You need to enter your username.'} else {document.getElementById('needUsername').innerHTML=''};
if (document.getElementById('password').value=='') {document.getElementById('needPassword').innerHTML='
You need to enter your password.'} else {document.getElementById('needPassword').innerHTML=''};
return false;
} else {
document.getElementById('form1').submit();
return true;
}
}
document.getElementById('submitButton').onmouseover=function() {
if (document.getElementById('username').value=='' || document.getElementById('password').value=='') {
document.body.style.cursor='default';
} else {
document.body.style.cursor='pointer';
}
}
document.getElementById('submitButton').onmouseout=function() {
document.body.style.cursor='default';
}