addLoadListener(init); function init() { document.forms[0].onsubmit = validateFields; return true; } function validateFields() { var firstName = document.forms[0].elements["C01"]; var lastName = document.forms[0].elements["C02"]; var email = document.forms[0].elements["C04"]; if ((firstName.value != "") && (lastName.value != "") && (email.value != "")) { /* Continue with submission */ return true; } else { alert("Please fill out all fields makred with an *."); /* Abort submission */ return false; } } function addLoadListener(fn) { if (typeof window.addEventListener != 'undefined') { window.addEventListener('load', fn, false); } else if (typeof document.addEventListener != 'undefined') { document.addEventListener('load', fn, false); } else if (typeof window.attachEvent != 'undefined') { window.attachEvent('onload', fn); } else { var oldfn = window.onload; if (typeof window.onload != 'function') { window.onload = fn; } else { window.onload = function() { oldfn(); fn(); }; } } };