﻿/***************************/
//@Author: Adrian "yEnS" Mato Gondelle
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/

//SETTING UP OUR POPUP
//0 means disabled; 1 means enabled;
var popupStatus = 0;

//loading popup with jQuery magic!
function loadPopup(){
	//loads popup only if it is disabled
	if(popupStatus==0){
		$("#backgroundPopup").css({
			"opacity": "0.7"
		});
		$("#backgroundPopup").fadeIn("slow");
		$("#popupContact").fadeIn("slow");
		popupStatus = 1;
	}
}

//disabling popup with jQuery magic!
function disablePopup(){
	//disables popup only if it is enabled
	if(popupStatus==1){
		$("#backgroundPopup").fadeOut("slow");
		$("#popupContact").fadeOut("slow");
		popupStatus = 0;
	}
}

//centering popup
function centerPopup(){
	//request data for centering
	var windowWidth = document.documentElement.clientWidth;
	var windowHeight = document.documentElement.clientHeight;
	var popupHeight = $("#popupContact").height();
	var popupWidth = $("#popupContact").width();
	//centering
	$("#popupContact").css({
		"position": "absolute",
		"top": windowHeight/2-popupHeight/2,
		"left": windowWidth/2-popupWidth/2
	});
	//only need force for IE6
	
	$("#backgroundPopup").css({
		"height": windowHeight
	});
	
}


//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
	
	//LOADING POPUP
	//Click the button event!
	$("#button").click(function(){
		//centering with css
		centerPopup();
		//load popup
		loadPopup();
	});
	$("#submit").click(function(){
		freequot_submit();
	});
	$("#clear").click(function(){
		clear_form();
	});
				
	//CLOSING POPUP
	//Click the x event!
	$("#popupContactClose").click(function(){
		disablePopup();
	});
	//Click out event!
	$("#backgroundPopup").click(function(){
		disablePopup();
	});
	//Press Escape event!
	$(document).keypress(function(e){
		if(e.keyCode==27 && popupStatus==1){
			disablePopup();
		}
	});

});

function freequot_submit()
{
	var str	= "";//for taking the error msg
	var ctr	= "";//for taking the controllername for focus
	
	var email	=	$("#email").val();
	
	if($("#name").val()==""){
		str	= 'Please give your name';
		ctr = "name";
	}
	else if($("#email").val()==""){
		str	= 'Please give your email id';
		ctr = "email";
	}
	else if($("#email").val()!='' && !checkemail(email) ){		
			str	= 'Enter a valid email id';
			ctr = "email";
	}
	else if($("#address").val()==""){
		str	= 'Please give address';
		ctr = "address";
	}	
	else if($("#comments").val()==""){
		str	= 'Please give your comments';
		ctr = "comments";
	}
	else {
		$('#load_msg').html('<img src="image/al_loading.gif" />');
	var datas	= "name="+$("#name").val()+"&phone="+$("#phone").val()+"&email="+$("#email").val()+"&fax="+$("#fax").val()+"&address="+$("#address").val()+"&comments="+$("#comments").val();

	$.ajax({
		   type: "POST",
			url: 'freequot_action.php',
			data:  datas,
			success: function(data){
			//alert(data);
			if(data=='success'){
				$('#load_msg').html('Your Free Quote Request has been sent.<br/>We will contact you soon!!&nbsp;<a  href="javascript:void(0);" onClick="javascript:disablePopup();" >Close</a><br/>');
				clear_form();
			}else{				
				$('#load_msg').html('Sorry..Failed to sent  email!!&nbsp;<a  href="javascript:void(0);" onClick="javascript:disablePopup();" >Close</a>');
				//disablePopup();
			}
		}
	}); 
	
	}
	
	if(str!="")
	$('#err_msg').html(str+'&nbsp;<a  href="javascript:void(0);" onClick="javascript:div_hide(\''+ctr+'\');" >Hide</a>');	
}

function clear_form()
{
	$("#name").val('');
	$("#phone").val('');
	$("#email").val('');
	$("#fax").val('');
	$("#address").val('');
	$("#comments").val('');
}

function checkemail(em)   //Email validation 
{
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(em))
	return true
	else
	return false
}	
//function for hide message box
function div_hide(ctr){
	
	$('#err_msg').html("");
	$('#load_msg').html("");
	document.getElementById(ctr).focus();
}
