// Documento JavaScript
var browserName=navigator.appName;

function ImprimirArticulo() {
	window.print();
}

function menuactivo() {
	objMenu.className = "activo";
	if (browserName=="Konqueror") { 
	}
	else { 
		objMenu.innerHTML += "<span id='soml'></span><span id='somr'></span><span id='somlb'></span><span id='somrb'></span>";
	}
}
function submenuactivo() {
	objSubmenu.className = "activo";
	objSubmenu.innerHTML += "<span id='somsubl'></span><span id='somsubr'></span>";
}
function mnbgColor(menunavbgcolor) {
	colordefondodelmenu = "menunav" + " " + menunavbgcolor;
	document.getElementById('mnbgcolor').className = colordefondodelmenu;
}

function textomenor() {
	var clase = document.getElementById('articulo').className;
	
	switch (clase) {
		case 'txtmenos1':
		case 'txtmenos2':
				document.getElementById('articulo').className = 'txtmenos2';
				break;
		case 'txtmas1':
				document.getElementById('articulo').className = '';
				break;
		case 'txtmas2':
				document.getElementById('articulo').className = 'txtmas1';
				break;
		default:
			document.getElementById('articulo').className = 'txtmenos1';
			break;
				
	}
	//document.getElementById('articulo').className = 'txtmenos1';
}

function textomayor() {
	var clase = document.getElementById('articulo').className;
	
	switch (clase) {
		case 'txtmenos1':
				document.getElementById('articulo').className = '';
				break;
		case 'txtmenos2':
				document.getElementById('articulo').className = 'txtmenos1';
				break;
		case 'txtmas1':
		case 'txtmas2':
				document.getElementById('articulo').className = 'txtmas2';
				break;
		default:
			document.getElementById('articulo').className = 'txtmas1';
			break;
				
	}
	
	//document.getElementById('articulo').className = 'txtmas1';
}


function enviarticulo() {
	cerrarRectificarNoticia();
	document.getElementById('envialanoticia').style.display = 'block';
	document.getElementById('ops-enviar').className = 'activo';
}

function cerrarEnviarNoticia() {
	document.getElementById('envialanoticia').style.display = 'none';
	document.getElementById('ops-enviar').className = '';

}


function rectificarticulo() {
	cerrarEnviarNoticia();
	document.getElementById('rectificalanoticia').style.display = 'block';
	document.getElementById('ops-rectificar').className = 'activo';
}

function cerrarRectificarNoticia() {
	document.getElementById('rectificalanoticia').style.display = 'none';
	document.getElementById('ops-rectificar').className = '';
}

function FNhover() {
	document.getElementById('doczonasensible').className = 'verFN';
}
function FNout() {
	document.getElementById('doczonasensible').className = '';
}

function presentaMW() {
	/*document.getElementById('carga1_mapaweb').style.display = 'block';
	document.getElementById('carga2_mapaweb').style.display = 'block';
	codigodelmapa = document.getElementById('carga1_mapaweb').outerHTML;
	document.getElementById('carga2_mapaweb').innerHTML = codigodelmapa;
	document.getElementById('carga1_mapaweb').style.display = 'none';*/
	document.getElementById('carga1_mapaweb').style.display = 'block';
   eval('var objOrigen = document.getElementById ? document.getElementById("carga1_mapaweb") : document.all.carga1_mapaweb;');
   eval('var objDestino = document.getElementById ? document.getElementById("carga2_mapaweb") : document.all.carga2_mapaweb;');
    objDestino.appendChild(objOrigen);
	document.getElementById('pie-mapa').className= 'activo';
    }

function cerrarMW() {
	//document.getElementById('carga2_mapaweb').style.display = 'none';
	document.getElementById('carga1_mapaweb').style.display = 'none';
	document.getElementById('pie-mapa').className= '';
}

function abrebloqueMN2() {
	//document.getElementById('carga2_mapaweb').style.display = 'none';
	document.getElementById('mn2-mas-h2').className ='mn2-mas-h2-activo';
	document.getElementById('cajamn2').style.display= 'block';
}
function cierrabloqueMN2() {
	document.getElementById('mn2-mas-h2').className ='mn2-mas-h2';
	document.getElementById('cajamn2').style.display= 'none';
}
