// JavaScript Document

function NoDisponible () {
	alert("La función solicitada no está aun disponible!");
	return false;
}

function AbrirVentana(URL,SB,ANCHO,ALTO,IZDA,ARRIBA) 
{ // <--- Designed By Miguel M.( webmiguel(a)gmail.com ) - www.ski-cams.com
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=" + SB + ",location=0,statusbar=0,menubar=0,resizable=0,width=" + ANCHO + ",height=" + ALTO + ",left = " + IZDA + ",top = " + ARRIBA + "');");
}

function ActivarFormulario(inputFather,inputSoon) {		
	var FatherSelected=inputFather[inputFather.selectedIndex].value;

	if (FatherSelected > 0) {
		inputSoon.disabled = false;
	} else {
		inputSoon.disabled = true;			
	}
}

function IniciarBusqueda()
{
	var buscador = document.buscador;
	if(buscador.texto_busqueda.value == 'Buscar...' || buscador.texto_busqueda.value.length < 2)
	{
		alert("Debe introducir el texto a buscar");
		buscador.texto_busqueda.focus();
	}
	else
		buscador.submit();
}
