
function popUpw(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=610,height=250');");



}

function popUp(url)
{
	newone=window.open(url,'name','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=610,height=250');
	newone.focus();
}


function validateForm(form) {

if (form.ContactName.value == "") { //This checks to make sure the field is not empty
   alert("The Contact Name field is empty."); //Informs user of empty field
   form.ContactName.focus( ); //This focuses the cursor on the empty field
   return false; //This prevents the form from being submitted
   }
if (form.email.value == "") { //This checks to make sure the field is not empty
   alert("The Contact Email field is empty."); //Informs user of empty field
   form.email.focus( ); //This focuses the cursor on the empty field
   return false; //This prevents the form from being submitted
   }

}
// you may copy the above 5 lines for each form field you wish to validate
// Replace the text "FIELD1" with the name you wish to call the field


