function updateMediaPanel(){
	if(currentWaypoint!=null && (currentWaypoint.hasPanorama || currentWaypoint.hasPicture || currentWaypoint.hasVideo)){
		document.getElementById("optionsPanel").style.display = "";
		createMediaIcon(PANORAMA_TYPE, "360icon", currentWaypoint==null?false:currentWaypoint.hasPanorama);
		createMediaIcon(PICTURE_TYPE, "photosicon", currentWaypoint==null?false:currentWaypoint.hasPicture);
		createMediaIcon(VIDEO_TYPE, "videosicon", currentWaypoint==null?false:currentWaypoint.hasVideo);
	}else{
		document.getElementById("optionsPanel").style.display = "none";
	}
}

function createMediaIcon(type, iconname, enabled){
	var container = document.getElementById(iconname + "id");
	container.style.display = "none";
	if(enabled){
		container.style.display = "";
		var link = document.getElementById(iconname + "_Id");
		link.href = 'javascript:showMediaPanel(' + createMediaInfoObject(type) + ')';
	}else{
		container.style.display = "none";
	}
}