/* Email validation 
------------------------------------------------------------------ */
function checkform(){
    var phone=false;
      var reMail = /^[A-Za-z0-9_.-]+@[A-Za-z0-9_.-]+\.[A-Za-z]{2,3}$/;
      if (document.contform.firstN.value == '') {
        document.contform.firstN.focus();
        alert("Please Type Your First Name !");
        return(false);
      }
      if (document.contform.lastN.value == '') {
        alert("Please Type Your Last Name !");
        document.contform.lastN.focus();
        return(false);
      }
      if ((document.contform.email.value == '') || !reMail.exec(document.contform.email.value)) 	{
        alert("Please Type Valid E-mail Address!");
        document.contform.email.focus();
        return(false);
      }
      return(document.contform.submit());
    }

/* Show/Hide 
------------------------------------------------------------------ */
function showHide(ele, ele1, ele2){
var x, y, z;
if ( document.getElementById
&& (x = document.getElementById(ele))
&& x.style )
{
x.style.display = ('none' == x.style.display)? '' : 'none' ;
}
if ( document.getElementById
&& (y = document.getElementById(ele1))
&& y.style )
{
y.style.display = ('none' == y.style.display)? '' : 'none' ;
}
if ( document.getElementById
&& (z = document.getElementById(ele2))
&& z.style )
{
z.style.display = ('none' == z.style.display)? '' : 'none' ;
}
}
