$(document).ready(function() {	
//	function open_email_popup(){
//alert("TEST INSIDE open_email_popup() ");		
//		//Get the screen height and width
//		var maskHeight = $(document).height();
//		var maskWidth = $(window).width();
//	
//		//Set heigth and width to mask to fill up the whole screen
//		$('#mask').css({'width':maskWidth,'height':maskHeight});
//		
//		//transition effect		
//		$('#mask').fadeIn(1000);	
//		$('#mask').fadeTo("slow",0.8);	
//	
//		//Get the window height and width
//		var winH = $(window).height();
//		var winW = $(window).width();
//              
//		//Set the popup window to center
//		$('#divEMAILPOPUPobj').css('top',  winH/2-$('#divEMAILPOPUPobj').height()/2);
//		$('#divEMAILPOPUPobj').css('left', winW/2-$('#divEMAILPOPUPobj').width()/2);
//	
//		//transition effect
//		$('#divEMAILPOPUPobj').fadeIn(2000); 		
//	}
	//select all the a tag with name equal to modal
	$('a[name=modal]').click(function(e) {
		//Cancel the link behavior
		e.preventDefault();
	open_email_popup();
	});
	
	//if close button is clicked
	$('.window .close').click(function (e) {
		//Cancel the link behavior
		e.preventDefault();
		
		$('#mask').fadeOut(2000);
		$('#divEMAILPOPUPobj').fadeOut(2000);
	bln_SHOWEMAILPOPUP_obj=false;	
	});		
	
	//if mask is clicked
	$('#mask').click(function () {
		$(this).fadeOut(2000);
		$('#divEMAILPOPUPobj').fadeOut(2000);
	bln_SHOWEMAILPOPUP_obj=false;	
	});			
	$(window).bind('resize', function() {
		//Get the screen height and width
		var maskHeight = $(document).height();
		var maskWidth = $(window).width();
	
		//Set heigth and width to mask to fill up the whole screen
		$('#mask').css({'width':maskWidth,'height':maskHeight});	
//	if (resizeTimer) clearTimeout(resizeTimer);
//	
//	resizeTimer = setTimeout(doSomething, 100);
		//Get the window height and width
		var winH = $(window).height();
		var winW = $(window).width();
              
		//Set the popup window to center
		$('#divEMAILPOPUPobj').css('top',  winH/2-$('#divEMAILPOPUPobj').height()/2);
		$('#divEMAILPOPUPobj').css('left', winW/2-$('#divEMAILPOPUPobj').width()/2);	
	});	
});
	function open_email_popup(){
//alert("TEST INSIDE open_email_popup() ");		
		//Get the screen height and width
		var maskHeight = $(document).height();
		var maskWidth = $(window).width();
	
		//Set heigth and width to mask to fill up the whole screen
		$('#mask').css({'width':maskWidth,'height':maskHeight});
		
		//transition effect		
		$('#mask').fadeIn(1000);	
		$('#mask').fadeTo("slow",0.8);	
	
		//Get the window height and width
		var winH = $(window).height();
		var winW = $(window).width();
              
		//Set the popup window to center
		$('#divEMAILPOPUPobj').css('top',  winH/2-$('#divEMAILPOPUPobj').height()/2);
		$('#divEMAILPOPUPobj').css('left', winW/2-$('#divEMAILPOPUPobj').width()/2);
	
		//transition effect
		$('#divEMAILPOPUPobj').fadeIn(2000); 		
	}
