// JavaScript Document
function ventanaSecundaria (URL){ 
var criterios;
	criterios="width=680, height=390, scrollbars=no, menubar=no, location=no, resizable=yes";
	if (typeof ventanaImagen == "object") {
		ventanaImagen.close()
	}
	ventanaImagen=window.open(URL,"ventana",criterios)
	ventanaImagen.moveTo(300,280);

} 
function ventananoticia (URL){ 
var criterios;
	criterios="width=580, height=650, scrollbars=no, menubar=no, location=no, resizable=no";
	if (typeof ventanaImagen == "object") {
		ventanaImagen.close()
	}
	ventanaImagen=window.open(URL,"ventana",criterios)
	ventanaImagen.moveTo(200,0);

}

function irnoticiasepa (URL){
	//window.parent.frames["contenido"].location="../../mantenedores/tup/contenedortup.php";
	//window.parent.frames["foto"].location="../contenidos/mantenedores/tup/foto_frame.html";
	//window.parent.frames["navegador"].location="navegador/sub_menus.html";
	window.open(URL,"parent")
    top.close();
}	
