function validate1() {

var companyname = document.registration.groupcompanyname.value
var pobox = document.registration.grouppobox.value
var city = document.registration.groupcity.value
var postalcode = document.registration.grouppostalcode.value
//var country = document.registration.groupcountry.selectedIndex
var location = document.registration.grouplocation.value
var phone = document.registration.grouptelephone.value
var email = document.registration.groupemail.value
var contactperson = document.registration.groupcontactperson.value

var msg = 'Please fill in or modify the following fields : ';

var retval = true;

var focusset = false


if (companyname == '') 
   {
   msg = msg + '\n- Group Company Name'
   document.registration.groupcompanyname.focus();
   focusset = true;
   retval = false;
   }
   

if (pobox == '') 
   {
   msg = msg + '\n- Post Box No'
   if (focusset != true ) {
   document.registration.grouppobox.focus();
   focusset = true;
	}
   retval = false;
   }
 
if (city== '') 
   {
   msg = msg + '\n- City Name'
   if (focusset != true ) {
   document.registration.groupcity.focus();
   focusset = true;
}
   retval = false;

   }

if (postalcode== '') 
   { msg = msg + '\n- Postal Code'
   if (focusset != true ) {
   document.registration.grouppostalcode.focus();
   focusset = true;
}
   retval = false;
   }
  
if (location == '' ) 
   {
   msg = msg + '\n- Location'
   if (focusset != true ) {
   document.registration.grouplocation.focus();
   focusset = true;
}
   retval = false;
   }

if (phone == '') 
   {
   msg = msg + '\n- Telephone Number'
   if (focusset != true ) {
   document.registration.grouptelephone.focus();
   focusset = true;
}
   retval = false;
   }


if (email == '') 
   {
   msg = msg + '\n- Email Address'
   if (focusset != true ) {
   document.registration.groupemail.focus();
   focusset = true;
}
   retval = false;
   }


if (contactperson == '') 
   {
   msg = msg + '\n- Contact Person'
   if (focusset != true ) {
   document.registration.groupcontactperson.focus();
   focusset = true;
}
   retval = false;
   }




if (retval != true ) 
	 {
	 alert(msg);
	 }
return retval;



}