function Video(id) {
	h_foto = ajax();
	h_foto.open("GET","js/video.asp?id="+id,true);
	h_foto.onreadystatechange=function() {
		if (h_foto.readyState==1) {
			document.getElementById("video").innerHTML=flash;
		}
		if (h_foto.readyState==4) {
			document.getElementById("video").innerHTML=h_foto.responseText;
		}

	}	
	h_foto.send(null);
}

function Menu(pag) {
	h_menu = ajax();
	h_menu.open("GET","js/menuVideo.asp?p="+pag,true);
	h_menu.onreadystatechange=function() {
		if (h_menu.readyState==4) {
			document.getElementById("menu").innerHTML=h_menu.responseText;
		}
	}	
	h_menu.send(null);
}

function Legenda(txt) {
	document.getElementById("pre_legenda").innerHTML=txt;
}