﻿//0 = disabled; 1 = enabled;var popupMapStatus = 0;//loading popup with jQuery magic!function loadPopupMap(){	//loads popup only if it is disabled	if(popupMapStatus==0){		$("#white_map_bg").css({			"opacity": "0.9"		});		$("#white_map_bg").fadeIn("slow");		$("#map1").fadeIn("slow");		popupMapStatus = 1;                    //request data for centering        var windowWidth = document.documentElement.clientWidth;        var windowHeight = document.documentElement.clientHeight;        var popupHeight = 680;        var popupWidth = 580;        var wH = windowHeight/2-popupHeight/2;        wH = wH + 50;                //centering        $("#map1").css({            "top": wH,            "left": windowWidth/2-popupWidth/2        });        $("#white_map_bg").css({            "height": windowHeight        });	}}//disabling popup with jQuery magic!function disablePopupMap(){	//disables popup only if it is enabled	if(popupMapStatus==1){		$("#white_map_bg").fadeOut("slow");		$("#map1").fadeOut("slow");		popupMapStatus = 0;	}}//centering popupfunction centerPopup(){	//request data for centering	var windowWidth = document.documentElement.clientWidth;	var windowHeight = document.documentElement.clientHeight;	var popupHeight = $("#map1").height();	var popupWidth = $("#map1").width();	//centering	$("#map1").css({		"top": windowHeight/2-popupHeight/2,		"left": windowWidth/2-popupWidth/2	});	//only need force for IE6		$("#white_map_bg").css({		"height": windowHeight	});	}function ShowMap(){    loadPopupMap();}function HideMap(){    disablePopupMap();}
