function DisplayEvent(url) {

window.open(url, 'calendar', 'width=660,height=660,left=10,top=30,scrollbar=yes,resizable=yes')

}



function checkMembers() {

if (!document.admin.firstname.value) {

alert("You did not enter a first name");
document.admin.firstname.focus();

return false;

}

if (!document.admin.lastname.value) {

alert("You did not enter a last name");
document.admin.lastname.focus();

return false;

}

if (!document.admin.address1.value) {

alert("You did not enter an address");
document.admin.address1.focus();

return false;

}

if (!document.admin.city.value) {

alert("You did not enter a city");
document.admin.city.focus();

return false;

}

if (!document.admin.zip.value) {

alert("You did not enter a zip code");
document.admin.zip.focus();

return false;

}

if (!document.admin.email.value) {

alert("You did not enter an email address");
document.admin.email.focus();

return false;

}

if (!document.admin.username.value) {

alert("You did not enter a username");
document.admin.username.focus();

return false;

}

if (!document.admin.password.value) {

alert("You did not enter a password");
document.admin.password.focus();

return false;

}

}


