
function createMarker(point,photo,linkto,name,tel,curr,price,service,icon) {
 /* function createMarker(point,name,icon){*/       
		var marker = new GMarker(point,icon);
		//var html='<div class="iwContainer"><div class="smallgallery" style="margin-bottom:3px;"><p><a href="/' + linkto + '-escort.php?ID='+ ID +'"><img src="/uploads/thumbnails/'+subfolder+'/'+ ID + '-0.jpg" width="60" border="0"  alt="' + name +'"/><i>' + name +'</i></a></p></div><div style="float:left;margin-left:5px;"><p><span class="pop_static ' + curr + '">'+ price + '</span></p><p><span class="pop_static pop_service">'+service+'</span></p><p><span class="pop_static pop_tel">'+tel+'</span></p></div></div>';
		var html='<div class="iwContainer"><div class="smallgallery" style="margin-bottom:3px;"><p><a href="/' + linkto + '" target="_blank"><img src="'+photo+'" height="60" border="0"  alt="' + name +'"/><i>' + name +'</i></a></p></div><div style="float:left;margin-left:5px;"><p><span class="pop_static ' + curr + '">'+ price + '</span></p><p><span class="pop_static pop_service">'+service+'</span></p><p><span class="pop_static pop_tel">'+tel+'</span></p></div></div>';
		
		 GEvent.addListener(marker, "click", function() {
         // marker.setContent(contentString); 
		//market.getElementById("iwContainer").innerHTML=tmp;
			marker.openInfoWindowHtml(html);
        });


        // The new marker "mouseover" listener        
        GEvent.addListener(marker,"mouseover", function() {
          marker.openInfoWindowHtml(html);
        });        
        
        return marker;
}
//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!
	$("#mapbutton").click(function(){
		//centering with css
		centerPopup();
		//load popup
		loadPopup();
	});
				
	//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();
		}
	});

});
