var mapCords;

function CreateGMapIFrame(Map, FKCountry, FKCity, languageid, MapCenterLat, MapCenterLong, MapZoomLevel, FKHotel) {
	if(Map){

		container_height = 0;
		if(container_height = Map.style.height){
		}else{
			container_height = 360;
		}

		iframe = document.createElement("IFRAME")
		Map.innerHTML = "";
		iframe.id = "GMapIFrame";
		iframe.frameborder = "0";
		iframe.scrolling = "no";
		iframe.style.width = "100%";
		iframe.style.height = "100%";
		iframe.style.padding = "0px";
		iframe.style.border = "0px solid #CDCDCD";
		Map.appendChild(iframe);


		//rc_url = "http://www.globalhotelindex.com/gmap2.asp?FKCountry="+FKCountry+"&FKHotel="+FKHotel+"&FKCity="+FKCity+"&languageid="+languageid+"&MapCenterLat="+MapCenterLat+"&MapCenterLong="+MapCenterLong+"&MapZoomLevel="+MapZoomLevel+"&mapHeight="+container_height;
		src_url		= "http://www.globalhotelindex.com/goto/dynamic/hotelonmap?HotelID="+FKHotel;

		// For testing take the following URL
		//src_url = "gmap.html"


		if(iframe_obj = document.getElementById("GMapIFrame")){
			iframe_obj.src = src_url;
		}
	}else{
		alert("Error: No GMap-DOM-Object");
	}
}
