function hideMenu(){
	document.getElementById("dmenu").style.display = "none";
}

function showMenu(){
	document.getElementById("dmenu").style.display = "block";
}

function launchAdoptees(){
	window.open("pop_adopt.html","","resizable=1,scrollbars=1, status=0, width=620, height=450");
}


function checkform ( form1 ){  

	  if (form1.realname.value == "") {
		alert( "Please enter your Name.\nMake sure you are giving the correct information.\nSpoorthivana" );
		form1.realname.focus();
		return false ;
	  }
	  
	  if(form1.address.value == "") {
		alert( "Please enter your Address.\nMake sure you are giving the correct information.\nSpoorthivana" );
		form1.address.focus();
		return false ;
	  }
	  
	  if(isNaN(form1.phone.value)){
	   alert("Please enter your telephone number with area code.\nMake sure you are giving the correct information.\nSpoorthivana");
	    form1.pin.select();
	    form1.pin.focus();
	    return false;
	  }
	  
	  if(isNaN(form1.cell.value)){
	    alert("Please Enter your mobile phone number.\nMake sure you are giving the correct information.\nSpoorhtivana");
	    form1.pin.select();
	    form1.pin.focus();
	    return false;
	  }
	  
	   if(form1.email.value.indexOf ('@',0) == -1 ||
		  form1.email.value.indexOf ('.',0) == -1) {
		alert( "Please enter your Email address.\nMake sure you are giving the correct information.\nSpoorthivana" );
		form1.email.select();
		form1.email.focus();
		return false ;
	  }
	  
	  if(form1.mess.value == "") {
		alert( "Please enter your Message to us.\nMake sure you are giving the correct information.\nSpoorthivana" );
		form1.mess.focus();
		return false ;
	  }
    return true ;
}

