// JavaScript Document

window.document.onclick = function(e){
	var oElement;
	if (!e) var e = window.event;
	if (e.target) oElement = e.target;
	else if (e.srcElement) oElement = e.srcElement;
	if (oElement.nodeType == 3) oElement = oElement.parentNode;

	if (oElement.id.substring(0,3) == "dot") {
		if (oElement.className.indexOf("clickTrue") >= 0) {
			document.location.href='marina_detail.aspx?ID='+oElement.id.substring(oElement.id.indexOf("_")+1,oElement.id.length)+'&area='+sArea;
		}
	} if (oElement.id.substring(0,5) == "place" || oElement.id.substring(0,5) == "label") {
		if (oElement.className.indexOf("clickTrue") >= 0) {
			document.location.href='place_detail.aspx?ID='+oElement.id.substring(oElement.id.indexOf("_")+1,oElement.id.length)+'&area='+sArea;
		}
	}

};
