function abrirVentana(url, nombre) {
	window.open(url, nombre, "width=500,height=550,menubar=0,location=0,toolbar=0,status=0,resizable=1,scrollbars=1");
}

function abrirVentanaImagen(url, nombre) {
	window.open(url, nombre, "width=450,height=400,menubar=0,location=0,toolbar=0,status=0,resizable=1,scrollbars=1");
}

function abrirVentanaCompleta(url, nombre) {
	var width = screen.availWidth -10;
	var height = screen.availHeight - 10
	window.open(url, nombre, "top=0, left=0,width=" + width + ",height=" + height + ",menubar=0,location=0,toolbar=0,status=0, resizable=1,scrollbars=1");
}

function llamarLayer(nombreLayer,nombrePagLayer, id) {
	if(!document.all && !document.getElementById) {
		layer = eval("document."+nombreLayer);
 	    layer.src = nombrePagLayer + "?ID=" + id;
	}else if(document.all){ 
		layer = eval(nombreLayer);
	    layer.location.replace(nombrePagLayer+"?ID=" +id);
	}else{
		layer = document.getElementById(nombreLayer);
	    layer.src = nombrePagLayer+"?ID=" +id;
	}
}
