// JavaScript AllScripts
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

// Abre ventanas al tamaņo del contenido
function plano(doc, x, y) {
	window.open(doc, "", "width="+x+",height="+y+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=0,resizable=0");
}

function ventana(doc, x, y) {
	window.open(doc, "", "width="+x+",height="+y+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=1,resizable=0");
}

function ventana2(doc, x, y) {
	window.open(doc, "", "width="+x+",height="+y+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=0,resizable=0");
}

function lg(cual,w,h) {
	window.open(cual, "", "width="+w+"&,height="+h+"&,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=1,resizable=0");
}

function cambiaVisibilidad(elemento){
	if (document.getElementById(elemento).style.display=='')
		document.getElementById(elemento).style.display = 'none';

	else
		document.getElementById(elemento).style.display = '';
	
}

function abrirVR(nombre,fichero) {
	document.frm.nombre.value= nombre;
	document.frm.fichero.value = fichero;
	document.frm.submit();
}
