//  v3.0



function editProject(projectid) {
  window.open('admin_projects_edit.php?projectid='+projectid,'document','height=600,width=600,scrollbars,resizable'); return false; }

function editLink(lid) {
  window.open('admin_resources_edit.php?lid='+lid,'link','height=400,width=600,scrollbars,resizable'); return false; }
  
function chkContact(s) {
   if (s.firstname.value=='')		return setErm(s['firstname'],	'You must enter your first name to continue.');
   if (s.lastname.value=='')		return setErm(s['lastname'],	'You must enter your last name to continue.');
   if (s.street.value=='')		return setErm(s['street'],	'You must enter your street address to continue.');
   if (s.city.value=='')		return setErm(s['city'],	'You must enter your city to continue.');
   if (s.zipcode.value=='')		return setErm(s['zipcode'],	'You must enter your Zip Code to continue.');
   if (s.dayphone.value=='')		return setErm(s['dayphone'],	'You must enter your daytime phone number to continue.');
// if (s.evephone.value=='')		return setErm(s['evephone'],	'You must enter your evening phone number to continue.');
   if (s.email.value=='')		return setErm(s['email'],	'You must enter your email address to continue.');
   if ((s.email.value.indexOf('@')==-1) || (s.email.value.indexOf('.')==-1)) return setErm(s['email'],'Your E-mail address appears to be invalid. Plaese check!');
   return true;
}

