var model = new Array();
var popup_home_opened = "";
function popup_home_model_activation(id){
	setup_popup_home_height(id);
}
function popup_home_model_desactivation(){
	$('#popup_home_background').css('display', 'none');
	$('.container .popup_home_content').css('display', 'none');
}
function setup_popup_home_height(){
	$('.popup_home_background').height(height_windows);
	$('.popup_home_background').width(width_windows);
	$('.container .popup_home_content').css("left", (width_windows - 584) / 2);
}
$(document).ready(
	function(){
		setup_popup_home_height();
		$('#popup_home_background').click(function(){
			popup_home_model_desactivation();
		});
	}
);
function activate_language(strlan){
	alert(strlan);
}
