
ns4 = (document.layers) ? true:false;
ie4 = (document.all) ? true:false;
function abrir_ventana (pag,tam_x,tam_y,vent,scroll,resize,menu,tool,status) {
 var pos_x, pos_y;
 scroll = (scroll==null) ? false : scroll;
 scroll = (scroll) ? "yes" : "no";
 resize = (resize==null) ? false : resize;
 resize = (resize) ? "yes" : "no";
 menu = (menu==null) ? false : menu;
 menu = (menu) ? "yes" : "no";
 tool = (tool==null) ? false : tool;
 tool = (tool) ? "yes" : "no";
 status = (status==null) ? false : status;
 status = (status) ? "yes" : "no";
 tam_x = (tam_x==null) ? 640 : tam_x;
 tam_y = (tam_y==null) ? 300 : tam_y;

 if (ns4 || ie4) {
 	var alto=window.screen.height;
 	var ancho=window.screen.width;
	pos_x = (ancho-tam_x)/2;
	pos_y = (alto-tam_y)/2-20;
 } else {
 	pos_x = 0;
 	pos_y = 0;
 }


 return(window.open(pag, vent, "toolbar="+tool+",directories=no,menubar="+menu+",scrollbars="+scroll+",location=no,status="+status+",resizable="+resize+",width="+tam_x+",height="+tam_y+",left="+pos_x+",top="+pos_y));
}
function Ventana(URL,mismaventana)
{
if (mismaventana)
	{
	window.parent.location.href=URL;
	}
else
	{
	window.location.href=URL;
	}

}
function activa (src,accion,pag) {
 if (accion) {
	if (pag==1)
		{
		
		src.bgColor="#EDEDED";
		}
	else
		{
	 	src.bgColor="#EDEDED";
		}
 	src.style.cursor = 'hand';
 } else {
	if (pag==1)
		{
		src.bgColor="#E6F2FF";
		}
	else
		{
		src.bgColor="#FFFFFF";
		}
 	src.style.cursor = 'default';
 }

}

function imprimir () {
 window.open('PaginaImpresion.asp');
}
// funcion foto a tamaņo variable

function abrirFoto (cual,tam_X,tam_Y) {
 abrir_ventana("VerFoto.html?imagenes/galeria/" + cual,tam_X,tam_Y,null,null,'fotos');
}
function abrirFotoNoticia (cual,tam_X,tam_Y) {
 abrir_ventana("VerFoto.html?imagenes/" + cual,tam_X,tam_Y,null,null,'fotos');
}
function abrirFotoParte (cual,tam_X,tam_Y) {
 abrir_ventana("VerFoto.html?imagenes/ImagenesDelDia/" + cual,tam_X,tam_Y,null,null,'fotos');
}

function abrirNoticia (cual) {
 abrir_ventana(cual,319,370);
}
