/* author: Oleg Sedletsky */


/* Creation date: 5-11-2003 */


function noEntry() {


m1=document.form.primcontact.value;


m8=document.form.primemail.value;


m9=document.form.phone.value;
m10=document.form.city.value;
m11=document.form.postcode.value;
m12=document.form.address.value;





if ((m1.length<1)||(m1.substring(0,6)=="******")) {


alert("You need enter field Primary Contact Person!");


document.form.primcontact.focus();


return false;


}


if ((m8.length<1)||(m8.substring(0,6)=="******")) {


alert("You need enter field Primary Contact E-mail!");


document.form.primemail.focus();


return false;


}





if ((m9.length<1)||(m9.substring(0,6)=="******")) {


alert("You need enter field Primary Contact Phone!");


document.form.phone.focus();


return false;


}
if ((m10.length<1)||(m10.substring(0,6)=="******")) {


alert("You need enter field City!");


document.form.city.focus();


return false;


}

if ((m11.length<1)||(m11.substring(0,6)=="******")) {


alert("You need enter field Zip code!");


document.form.postcode.focus();


return false;


}
if ((m12.length<1)||(m12.substring(0,6)=="******")) {


alert("You need enter field Address!");


document.form.address.focus();


return false;


}






else { return true; }


}



