// JavaScript Document

//-----------------------------------------------------------------

function quitarFrame() 
{
if (self.parent.frames.length != 0)
self.parent.location=document.location.href;
}

//-----------------------------------------------------------------

function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

//-----------------------------------------------------------------

function MM_jumpMenuSelecccion(targ,selObj,restore){ //v3.0
	if(document.form.selecciona2.value!=''){
		if(confirm('¿Cambiar los seleccionados?')){
			eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"&seleccion="+document.form.selecciona2.value+"'");
			if (restore) selObj.selectedIndex=0;
		}else{
			return(false);
		}
	}else{
		alert('Ningun registro seleccionado');
	}
}

//-----------------------------------------------------------------

var browser=navigator.appName;

function cambia (texto, foto){
	var eleOld=document.getElementById('texto');
    var eleNew=document.createElement('p');
	eleNew.setAttribute('id','texto');
	var texto_c = document.createTextNode(texto);
	eleNew.appendChild(texto_c);
	
    var imgOld=document.getElementById('gal');
	var imagen = document.createElement("img");
	if (browser=='Microsoft Internet Explorer')
		imagen.setAttribute('className','foto');
	else 
		imagen.setAttribute('class','foto_gal');
	imagen.setAttribute('name','gal');
	imagen.setAttribute('id','gal');
	imagen.setAttribute('src',foto);
	
	var parent=eleOld.parentNode;
	parent.replaceChild(eleNew, eleOld);
	   
    var parent=imgOld.parentNode;
	parent.replaceChild(imagen, imgOld);
	return false;
}