﻿// JScript File

function abre_elegir_pob(path)
{
    direccion = "/"+path+"/Pages_Front/Rutas/Popup_local_partida.aspx";    //abre.aspx
    window.open(direccion, "", "width=450px,height=200px,left=150,top=100,resizable=no,tittlebar=no,scrollbars=no");
}

function cargando()
{
    direccion = "/DPH_back/Pages_Front/Includes/Cargando.aspx";    //abre.aspx
    window.open(direccion, "", "width=250px,height=75px,left=250,top=225");
}


function abre_popup(param)
{
    direccion = "/DPH_back/Pages_Front/Includes/ver_imagen.aspx";    //abre.aspx
    direccion += param;  //?id=ddd&nom=dddd
    window.open(direccion, "", "width=800px,height=600px,left=50,top=50");
}

function abre_popup2(param,hei,wit,resiz)
{
    direccion = "/DPH_back/Pages_Front/Includes/ver_imagen.aspx";    //abre.aspx
    direccion += param;  //?id=ddd&nom=dddd
    valores = "width=" + wit + ",height=" + hei;
    valores += ",left=50,top=50,resizable=" + resiz + ",tittlebar=no,scrollbars="+ resiz;
    window.open(direccion, "", valores);
}

//Rutas
function ver_print()
{
    var g = document.getElementById("printable").style.visibility;
    
	if (g == "hidden")
	{		
        document.getElementById("printable").style.visibility = "visible";
		//document.getElementById("printable").style.display = "block";
	}else
	{
	    document.getElementById("printable").style.visibility = "hidden";
		//document.getElementById("printable").style.display = "none";		
	}
}

function mira_pun_iti()
{
	if (document.forms[0].pun_iti[0].checked)
	{
		document.getElementById("tr_puntos").style.visibility = "visible";
		document.getElementById("tr_puntos").style.display = "block";
		document.getElementById("tr_iti").style.visibility = "hidden";
		document.getElementById("tr_iti").style.display = "none";
	}else
	{
		document.getElementById("tr_puntos").style.visibility = "hidden";
		document.getElementById("tr_puntos").style.display = "none";
		document.getElementById("tr_iti").style.visibility = "visible";
		document.getElementById("tr_iti").style.display = "block";
	}
}


function muestraReloj() 
{ 
if (!document.layers && !document.all && !document.getElementById) return; 
var fechacompleta = new Date() ; 
var horas = fechacompleta. getHours() ; 
var minutos = fechacompleta. getMinutes() ; 
var segundos = fechacompleta. getSeconds() ; 
var mt ="AM"; 
if (horas > 12) { 
mt ="PM"; 
horas = horas - 12; 
} 
if (horas == 0) horas = 12; 
if (minutos <= 9) minutos = "0" + minutos; 
if (segundos <= 9) segundos = "0" + segundos; 

fuikasreloj = horas + ":" + minutos + ":" + segundos + " " + mt; 
if (document.layers) { 
document.layers.spanreloj.document.write(fuikasreloj); 
document.layers.spanreloj.document.close(); 
} 
else if (document.all) spanreloj.innerHTML = fuikasreloj; 
else if (document.getElementById) 
document.getElementById("spanreloj").innerHTML = fuikasreloj; 
setTimeout ("muestraReloj()", 1000); 
} 


// Opiniones
function crear_opinion(id){
    direccion = "opinar.aspx";
    direccion += "?nueva=si";
    direccion += "&grupo=" + id;
    window.location = direccion;
}

function responder(id,titulo,grupo){
    direccion = "opinar.aspx";
    direccion += "?nueva=no";
    direccion += "&grupo=" + grupo;
    direccion += "&padre=" + id;
    direccion += "&asunto=" + titulo;
    window.location = direccion;
}									

//Foro
function crear_grupo(){
    direccion = "crear_grupo.aspx";
    window.location = direccion;
}
						
function abrir_grupo(id,nombre){
	direccion = "opiniones_b.aspx";
	direccion += "?grupo=" + id;
	direccion += "&nombre=" + nombre;
	window.location = direccion;
}

//GALERIA

function ver_buscador()
{
    var g = document.getElementById("buscador").style.visibility;
    
	if (g == "hidden")
	{
		document.getElementById("buscador").style.visibility = "visible";
		document.getElementById("buscador").style.display = "block";		
	}else
	{
		document.getElementById("buscador").style.visibility = "hidden";
		document.getElementById("buscador").style.display = "none";		
	}
}

	

