function getURL(url) {

	window.location = url;
}

function showMap() {

	var left 		= (screen.width / 2) - 240;
	var top 		= (screen.height / 2) - 380;
	var attributes  = "toolbar=0,scrollbars=no,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=550,left="+left+",top="+top+";w.focus();";
	
	window.open ("map.php",'name',"'" + attributes + "'");
}

function showImage(photo) {

	var left 		= (screen.width / 2) - 240;
	var top 		= (screen.height / 2) - 380;
	var attributes  = "toolbar=0,scrollbars=no,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=550,left="+left+",top="+top+";w.focus();";
	
	window.open ("photo.php?photo=" + photo,'name',"'" + attributes + "'");
}

function showVideo() {

	var left 		= (screen.width / 2) - 240;
	var top 		= (screen.height / 2) - 380;
	var attributes  = "toolbar=0,scrollbars=no,location=0,statusbar=0,menubar=0,resizable=0,width=335,height=350,left="+left+",top="+top+";w.focus();";
	
	window.open ("video.php",'name',"'" + attributes + "'");
}