// JavaScript Document
actualizacion="";
function insertar_YouTube(IDyoutube) {
  var output = "<div style=\"text-align:center;\">";
  output += "<object width=\"425\" height=\"350\" id=\"movie\" type=\"application/x-shockwave-flash\" data=\"http://www.youtube.com/v/" + IDyoutube + "&hl=es&fs=1&rel=0&autoplay=0&ap=%2526fmt%3D18&showsearch=0&showinfo=0\">";
  output += "<param name=\"movie\" value=\"http://www.youtube.com/v/" + IDyoutube + "&hl=es&fs=1&rel=0&autoplay=0&ap=%2526fmt%3D18&showsearch=0&showinfo=0\" />";
  output += "<param name=\"wmode\" value=\"transparent\" />";
  output += "<param name=\"allowfullscreen\" value=\"true\" />";
  output += "</object>";
  output += "</div>";
  document.write (output);
}
function resalta(sel) {
var opcion = document.getElementById("opcion"+sel);
if (opcion.className!="menu_item_down") {
	var enlace = document.getElementById("link"+sel);
	opcion.className = "menu_item_a";
	enlace.className = "menuLink_over";
	
	}
}
function normaliza(sel) {
var opcion = document.getElementById("opcion"+sel);
if (opcion.className!="menu_item_down") {
	var enlace = document.getElementById("link"+sel);
opcion.className = "menu_item";
enlace.className = "menuLink";
	}
	
}
function goto(sel) {
	var opcion = document.getElementById("opcion"+sel);
	opcion.className = "menu_item_down";
	document.getElementById("link"+sel).className = "menuLink";
	resetMenu(sel);
	if (sel=="1") { document.location = "index.php"; }
	if (sel=="2") { document.location = "bio.php"; }
	if (sel=="3") { document.location = "blog.php"; }
	if (sel=="4") { document.location = "multimedia.php"; }
	if (sel=="5") { document.location = "contacto.php"; }

}
function resetMenu(sel) {
	if (sel!="1") { 
		document.getElementById("opcion1").className = "menu_item"; 
		document.getElementById("link1").className = "menuLink"; 
	}
	if (sel!="2") { 
		document.getElementById("opcion2").className = "menu_item"; 
		document.getElementById("link2").className = "menuLink"; 
	}
	if (sel!="3") { 
		document.getElementById("opcion3").className = "menu_item"; 
		document.getElementById("link3").className = "menuLink"; 
	}
	if (sel!="4") { 
		document.getElementById("opcion4").className = "menu_item"; 
		document.getElementById("link4").className = "menuLink"; 
	}
	if (sel!="5") { 
		document.getElementById("opcion5").className = "menu_item"; 
		document.getElementById("link5").className = "menuLink"; 
	}

}
function compruebaCampo(id) {
	if (document.getElementById(id).value=="") {
		return false;
	} else {
		return true;
	}
}

function enviarContacto() {
	if (compruebaCampo('remiteNombre')==false) {
		alert('Debes rellenar todos los campos para poder enviar tu mensaje.');
		return false;
	}
		if (compruebaCampo('remiteMail')==false) {
		alert('Debes rellenar todos los campos para poder enviar tu mensaje.');
		return false;
	}
		if (compruebaCampo('mensaje')==false) {
		alert('Debes rellenar todos los campos para poder enviar tu mensaje.');
		return false;
	}
	document.forms[0].submit();
	
}
function actualizar(contador) {
//		alert('ding!');
//	if (actualizacion=="FIN") {
//		document.getElementById("mostrar").innerHTML = " ";
//	} else { 
//		document.getElementById("actualizar").innerHTML =+ actualizacion;
//		document.getElementById("DESDE").value = contador;
//	}
}

//function actualiza() {
//
//	document.forms[0].submit();
//	
//}
