function OpenEventsDetails(id)
{
	var OpenWindow=window.open("details.php?id="+id,"logwindow",'left=100,top=70,width=700,height=600,toolbar=0,resizable=0,scrollbars=1,addressbar=0');
	OpenWindow.focus();
	return false;
}


function validation_contact(){
	var x    = document.form;
	var Filter =/^.+@.+..{2,3}$/
    err="";
	
	if ( (x.first.value.charAt(0) == " ") || (x.first.value.charAt(1) == " ") || ((x.first.value.charAt(0) == " ") && (x.first.value.charAt(1) == " ") && (x.first.value.charAt(2) == " ")) || (x.first.value == "") || (x.first.value.length <= 3) ){
	  alert("Please enter first name correctly");
	  x.first.focus();
	  return false
	}
	
	if ( (x.last.value.charAt(0) == " ") || (x.last.value.charAt(1) == " ") || ((x.last.value.charAt(0) == " ") && (x.last.value.charAt(1) == " ") && (x.last.value.charAt(2) == " ")) || (x.last.value == "") || (x.last.value.length <= 3) ){
	  alert("Please enter last name correctly");
	  x.last.focus();
	  return false
	}
	
	if ( (x.position.value.charAt(0) == " ") || (x.position.value.charAt(1) == " ") || ((x.position.value.charAt(0) == " ") && (x.position.value.charAt(1) == " ") && (x.position.value.charAt(2) == " ")) || (x.position.value == "") || (x.position.value.length <= 3) ){
	  alert("Please enter position correctly");
	  x.position.focus();
	  return false
	}
	
	
	if(x.country.value==''){
	  alert("Please select country");
	  x.country.focus();
	  return false
	}
	
	
	if(x.email.value==''  || !Filter.test(x.email.value)){
	  alert("Please enter valid email address");
	  x.email.focus();
	  return false
	}
	
	if ( (x.comments.value.charAt(0) == " ") || (x.comments.value.charAt(1) == " ") || ((x.comments.value.charAt(0) == " ") && (x.comments.value.charAt(1) == " ") && (x.comments.value.charAt(2) == " ")) || (x.comments.value == "") || (x.comments.value.length <= 3) ){
	  alert("Please enter comments");
	  x.comments.focus();
	  return false
	}
	
	
	  return true
     
 }
 
 function validation_inquiries(){
	var x    = document.form;
	var Filter =/^.+@.+..{2,3}$/
    err="";
	
	if ( (x.first.value.charAt(0) == " ") || (x.first.value.charAt(1) == " ") || ((x.first.value.charAt(0) == " ") && (x.first.value.charAt(1) == " ") && (x.first.value.charAt(2) == " ")) || (x.first.value == "") || (x.first.value.length <= 3) ){
	  alert("Please enter first name correctly");
	  x.first.focus();
	  return false
	}
	
	if ( (x.last.value.charAt(0) == " ") || (x.last.value.charAt(1) == " ") || ((x.last.value.charAt(0) == " ") && (x.last.value.charAt(1) == " ") && (x.last.value.charAt(2) == " ")) || (x.last.value == "") || (x.last.value.length <= 3) ){
	  alert("Please enter last name correctly");
	  x.last.focus();
	  return false
	}
	
	
	if(x.email.value==''  || !Filter.test(x.email.value)){
	  alert("Please enter valid email address");
	  x.email.focus();
	  return false
	}
	
	if ( (x.details.value.charAt(0) == " ") || (x.details.value.charAt(1) == " ") || ((x.details.value.charAt(0) == " ") && (x.details.value.charAt(1) == " ") && (x.details.value.charAt(2) == " ")) || (x.details.value == "") || (x.details.value.length <= 3) ){
	  alert("Please enter details");
	  x.details.focus();
	  return false
	}
	
	
	  return true
     
 }
 
 function fadeanime(){
	 $(document).ready(function(){
			$(maintable).hide();
            $(maintable).fadeIn(2000);
                    	         })
 }

