function segundoNivelNavegacionSP(item){
	document.write ("<div class='subNav'><a href='default.asp' target='_parent'>Inicio</a> <img src='img/flecha_pq.jpg' /> <a href='sala_prensa.asp?pre-sec=prensa&sec=sp_notas' target='_parent'>Sala de prensa</a> <img src='img/flecha_pq.jpg' /> <b>" + item + "</b></div>");	
}

function menu(activo){
	if (activo != ""){
		document.getElementById(activo).style.color = "#fcb131";
		document.getElementById(activo).style.textDecoration = "underline";
	}
}
function getYear(d) { 
   return (d < 1000) ? d + 1900 : d;
}
 
 function isDate (day, month, year) {

   month = month - 1;
   var tempDate = new Date(year,month,day);
   if ( (getYear(tempDate.getYear()) == year) &&
      (month == tempDate.getMonth()) &&
      (day == tempDate.getDate()) )
       return true;
   else
      return false;
}
 
function validaFecha(fecha) {
var p;
 if (fecha != ""){
		 	var fecha2=fecha
		 	if (fecha2.indexOf("/",1) != -1){ 
		 			p=fecha2.split("/")
			}
			else if (fecha2.indexOf("-",1) != -1){ 
		 			p=fecha2.split("-")
			}
			if (p != undefined){
				  if (isDate(p[0],p[1],p[2])==false){
				   return false; 
				  }
				  else{
						return true; 
					}
			}
			else{return false;}
	}
}

function abrirPrimerMenu(activo){ 
	
	cerrarTodo();
	
	if (activo != ""){
		document.getElementById(activo).style.display = "block";
		document.getElementById(activo).style.backgroundColor = "#FFFFFF";
		document.getElementById("img_" + activo).src = "/gruposoftland/img/menu/flecha_down.gif";	
	}
	
}

function cerrarTodo(){
	
	document.getElementById("secc_argentina").style.display = "none";
	document.getElementById("img_secc_argentina").src = "/gruposoftland/img/menu/flecha.gif";
	document.getElementById("secc_colombia").style.display = "none";
	document.getElementById("img_secc_colombia").src = "/gruposoftland/img/menu/flecha.gif";
	document.getElementById("secc_chile").style.display = "none";
	document.getElementById("img_secc_chile").src = "/gruposoftland/img/menu/flecha.gif";
	document.getElementById("secc_mexico").style.display = "none";
	document.getElementById("img_secc_mexico").src = "/gruposoftland/img/menu/flecha.gif";

}

function abrirSegundoMenu(activo){
	
	if (activo != ""){
		document.getElementById(activo).style.color = "#008469";
		document.getElementById(activo).style.fontWeight = "bold";
		document.getElementById("img_" + activo).src = "/gruposoftland/img/menu/vacio.gif";
	}
	
}

function crearMenu(principal, seccionUl, tituloUl, URLli, seccionLi, tituloLi){

	if(principal == true){
		document.getElementById('listaPrincipal').innerHTML = document.getElementById('listaPrincipal').innerHTML + "<li>";
		document.getElementById('listaPrincipal').innerHTML = document.getElementById('listaPrincipal').innerHTML + "<img id='img_" + seccionUl + "' src='/gruposoftland/img/menu/flecha.gif' border='0'> ";
	  document.getElementById('listaPrincipal').innerHTML = document.getElementById('listaPrincipal').innerHTML + "<a href='#' OnClick=javascript:abrirPrimerMenu('" + seccionUl + "');><img src='/gruposoftland/img/menu/img_" + seccionLi + ".gif' border='0'></a>";
	  document.getElementById('listaPrincipal').innerHTML = document.getElementById('listaPrincipal').innerHTML + "<ul style='display:none;' id='" + seccionUl + "'>";	  
		document.getElementById('listaPrincipal').innerHTML = document.getElementById('listaPrincipal').innerHTML + "</ul>";
		document.getElementById('listaPrincipal').innerHTML = document.getElementById('listaPrincipal').innerHTML + "</li>";
	}
	else{
	 	document.getElementById(seccionUl).innerHTML = document.getElementById(seccionUl).innerHTML + "<li>";
	 	document.getElementById(seccionUl).innerHTML = document.getElementById(seccionUl).innerHTML + "<img id='img_" + seccionLi + "' src='/gruposoftland/img/menu/vacio.gif' border='0'> ";
		document.getElementById(seccionUl).innerHTML = document.getElementById(seccionUl).innerHTML + "<a href='" + URLli + "' id='" + seccionLi + "' target='_blank'>" +  "<img id='img_" + seccionUl + "' src='/gruposoftland/img/menu/img_" + tituloLi + ".jpg' border='0'> ";
	 	document.getElementById(seccionUl).innerHTML = document.getElementById(seccionUl).innerHTML + "</li>";
	}
				  	
}

function validarNotas(idNota, seccion){
	if(document.formNotas.titular.value == ""){
		alert("Por favor, introduce el título de la nota.");
		document.formNotas.titular.focus();
	}
	else if(document.formNotas.fecha.value == ""){
		alert("Por favor, introduce la fecha de la nota.");
		document.formNotas.fecha.focus();
	}
	else if(validaFecha(document.formNotas.fecha.value) == false){
		alert("Por favor, introduce una fecha correcta.");
		document.formNotas.fecha.focus();
	}
	else if(document.formNotas.nota.value == ""){
		alert("Por favor, introduce el contenido de la nota.");
		document.formNotas.nota.focus();
	}
	else{
		document.formNotas.action = "guardar.asp?seccion=" + seccion + "&id=" + idNota;
		document.formNotas.submit();
	}
}

function validarClipping(idClip, seccion){
	if(document.formNotas.titular.value == ""){
		alert("Por favor, introduce el título de la noticia.");
		document.formNotas.titular.focus();
	}
	else if(document.formNotas.medio.value == ""){
		alert("Por favor, introduce el medio de la noticia.");
		document.formNotas.medio.focus();
	}
	else if(document.formNotas.fecha.value == ""){
		alert("Por favor, introduce la fecha de la noticia.");
		document.formNotas.fecha.focus();
	}
	else if(validaFecha(document.formNotas.fecha.value) == false){
		alert("Por favor, introduce una fecha correcta.");
		document.formNotas.fecha.focus();
	}
	else if(document.formNotas.nota.value == ""){
		alert("Por favor, introduce el contenido de la noticia.");
		document.formNotas.nota.focus();
	}
	else if(document.formNotas.imagen.value == ""){
		alert("Por favor, introduce una imagen para la noticia.");
		document.formNotas.imagen.focus();
	}
	else{
		document.formNotas.action = "guardar.asp?seccion=" + seccion + "&id=" + idClip;
		document.formNotas.submit();
	}
}

function validarCampanas(idCampana, seccion){
	if(document.formNotas.titulo.value == ""){
		alert("Por favor, introduce el nombre de la campaña.");
		document.formNotas.titulo.focus();
	}
	else if(document.formNotas.pais.value == ""){
		alert("Por favor, introduce el país de la campaña.");
		document.formNotas.pais.focus();
	}
	else if(document.formNotas.fecha.value == ""){
		alert("Por favor, introduce la fecha de la campaña.");
		document.formNotas.fecha.focus();
	}
	else if(validaFecha(document.formNotas.fecha.value) == false){
		alert("Por favor, introduce una fecha correcta.");
		document.formNotas.fecha.focus();
	}
	else if(document.formNotas.imagen.value == ""){
		alert("Por favor, introduce una imagen para la campaña.");
		document.formNotas.imagen.focus();
	}
	else{
		document.formNotas.action = "guardar.asp?seccion=" + seccion + "&id=" + idCampana;
		document.formNotas.submit();
	}
}

function poneEstilo(item){
	item.style.textDecoration = "none";
	item.style.color = "#999999";
}

function quitaEstilo(item){
	item.style.textDecoration = "none";
	item.style.color = "#000000";
}