// JavaScript Document originally coded by Pepper Designs

$(document).ready(function()
				  {
					  $("#submitbtn").click(function()
											{
												$("#loader").ajaxStart(function()
																				{
																					$(this).show();
																				}).ajaxStop(function()
																				{
																					$(this).hide();
																				});
												
												var pos = $("#msg").offset();
												var lt = (screen.width/2) - ($("#msg").width() / 2) - 40;
												var tt = (screen.height/2) - (100);
												$.post("contactprocess.php",{name: document.contactform.name.value, organization: document.contactform.organization.value, email: document.contactform.email.value, phno: document.contactform.phno.value, query: document.contactform.query.value},function(data){
																						$("#msg").html("<a href='javascript:closeBox();'><img src='images/close.gif' alt='close' border='0' style='float:right;' /></a>"+data);
																						});
												$("#msg").css({"display":"block"});												
												$("#msg").animate({left:lt,opacity:1,top:tt},"slow");
											});
				  });

function closeBox()
{
													
		$("#msg").animate({left:0,opacity:0,top:0},"slow");
		document.contactform.name.value = "";
		document.contactform.organization.value = "";
		document.contactform.email.value = "";
		document.contactform.phno.value = "";
		document.contactform.query.value = "";
		$("#msg").html("");
}




