﻿/***************************/
//@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": "2000px" //windowHeight
	});
	
}

function setCookie(c_name,value,exdays)
{
	var exdate=new Date();
	exdate.setDate(exdate.getDate()+exdays);
	var c_value=escape(value) + "; expires="+exdate.toUTCString();
	document.cookie=c_name + "=" + c_value;
}

function getCookie(name) {
    var nameEQ = name + "=";
    var ca = document.cookie.split(';');
    for(var i=0;i < ca.length;i++) {
        var c = ca[i];
        while (c.charAt(0)==' ') c = c.substring(1,c.length);
        if (c.indexOf(nameEQ) == 0) return unescape(c.substring(nameEQ.length,c.length));
    }
    return null;
}

function deleteCookie(name) {
    setCookie(name,"",-1);
}


//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
	
	//LOADING POPUP
	//Click the button event!
	$("#button").click(function(){
		//centering with css
		centerPopup();
		//load popup
		loadPopup();
	});
				
	//CLOSING POPUP
	//Click the x event!
	$("#popupContactClose").click(function(){
		disablePopup();
	});
	$("#popupClose").click(function(){
		disablePopup();
		deleteCookie('Isdonate');
		//$('#edit-field-cust-sample-value').attr('checked',false);
	});
	$("#donate").click(function(){
		/*setCookie('fname',document.getElementById('edit-title').value,1);
		setCookie('lname',document.getElementById('edit-field-cust-lname-0-value').value,1);
		setCookie('email',document.getElementById('edit-field-cust-email-0-email').value,1);
		setCookie('address1',document.getElementById('edit-field-cust-add-0-street').value,1);
		setCookie('address2',document.getElementById('edit-field-cust-add-0-additional').value,1);
		setCookie('city',document.getElementById('edit-field-cust-add-0-city').value,1);
		setCookie('country',$("#edit-field-cust-add-0-country").val(),1);
		
		setCookie('country1',$("#edit-field-cust-add-0-country").find(':selected').text(),1);
		setCookie('state',$("#edit-field-cust-add-0-province").val(),1);
		setCookie('state1',$("#edit-field-cust-add-0-province").find(':selected').text(),1);
		setCookie('post_code',$("#edit-field-cust-add-0-postal-code").val(),1);
		setCookie('comment',$("#edit-field-cust-cumment-0-value").val(),1);
		window.top.location.href = "http://www.vplenish.rave-staging.com/cart/checkout";*/
		setCookie('Isdonate','yes',1);
		disablePopup();
	});
	
	
	//Click out event!
	/*$("#backgroundPopup").click(function(){
		disablePopup();
	});*/
	//Press Escape event!
	/*$(document).keypress(function(e){
		if(e.keyCode==27 && popupStatus==1){
			disablePopup();
		}
	});*/

});
