function checkform ( form )
{
  // see http://www.thesitewizard.com/archive/validation.shtml
  // for an explanation of this script and how to use it on your
  // own website

  // ** START **
  if (form.shard.value == "") {
    alert( "Please enter your shard." );
    form.shard.focus();
    return false ;
  }
    if (form.flname.value == "") {
    alert( "Please enter your full name." );
    form.icq.focus();
    return false ;
  }
    if (form.email.value == "") {
    alert( "Please enter your email." );
    form.icq.focus();
    return false ;
  }
   if (form.phone.value == "") {
    alert( "Please enter your phone number." );
    form.icq.focus();
    return false ;
  }
  // ** END **
  return true ;
}

			function popiup(url) {
				newwindow = window.open(url,'name1','height=380,width=760');
				if (window.focus) { newwindow.focus() }
				return false;
			}
			function popjup(url) {
				newwindow = window.open(url,'name2','height=500,width=500,scrollbars=yes');
				if (window.focus) { newwindow.focus() }
				return false;
			}
