function eyacc(n){
var mc="SubSection-"+n;

if (document.getElementById(mc).style.display == "block") {
//$("#SubSection-"+n).slideUp("slow");
document.getElementById('SubSection-'+n).style.display='none';
//$("#Arrow-"+n).attr("src","http://lib.store.yahoo.net/lib/yhst-48015799947598/ey-plus.jpg");
document.getElementById('Arrow-'+n).src='http://lib.store.yahoo.net/lib/yhst-48015799947598/ey-plus.jpg';
} 
else {

//$("#SubSection-"+n).slideDown("slow");
document.getElementById('SubSection-'+n).style.display='block';
//$("#Arrow-"+n).attr("src","http://lib.store.yahoo.net/lib/yhst-48015799947598/ey-minus.jpg");
document.getElementById('Arrow-'+n).src='http://lib.store.yahoo.net/lib/yhst-48015799947598/ey-minus.jpg';
}
}

function check()
{
  if(document.thecontactform.subject.value.length==0)
  {
   alert('Please select your type of question');
   document.thecontactform.subject.focus();
   return;
  }
  if(document.thecontactform.name.value.length==0)
  {
   alert('Please enter your name');
   document.thecontactform.name.focus();
   return;
  }
  if(document.thecontactform.email.value.length==0)
  {
   alert('Please enter your email address');
   document.thecontactform.email.focus();
   return;
  }
  if(document.thecontactform.verifyemail.value.length==0)
  {
   alert('Please verify your email address');
   document.thecontactform.verifyemail.focus();
   return;
  }
  
  var email1 = document.thecontactform.email.value;
  var email2 = document.thecontactform.verifyemail.value;
  
  if(email1 != email2)
  {
   alert('Email Address do not match');
   document.thecontactform.email.focus();
   return;
  }
  if(document.thecontactform.message.value.length==0)
  {
   alert('Please enter your inquiry');
   document.thecontactform.message.focus();
   return;
  }
document.thecontactform.submit();
}
