// JavaScript Document

/* abrir las imagenes en un pop-up */
function ventanaImagen(imagen,titulo,ancho,alto)
{
	
	if (alto>700) var alto = 700;
	
	var OutPutStr = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>'+titulo+'</title></head><body><table width="100%"><tr><th>'+titulo+'</th></tr><tr><td align="center"><div style="height:'+alto+'px; overflow:scroll;"><img src="'+imagen+'" alt="'+titulo+'" style="border: solid 1px #CCCCCC" /></div></td></tr></table></body></html>';
	var ShowImageWindow;

	ShowImageWindow = window.open('','ShowImageWin','top='+(screen.height/2-225)+',left='+(screen.width/2-175)+',width='+(ancho+50)+',height='+(alto+50));

	ShowImageWindow.document.open();

	ShowImageWindow.document.write(OutPutStr);
}

/* Buscador */
function buscadorIntro(tecla)
{
	var campo = document.getElementById('busqueda');
	if(tecla.keyCode == 13){ 
		if ((campo.value).length<3) alert('Debe escribir al menos 3 caracteres. ');	
		else{ window.open("index.php?pagina=inicio&buscar="+campo.value, "_self");}
	}	
}

/*function buscadorBoton()
{
	var campo = document.getElementById('busqueda');
	if ((campo.value).length<3) alert('Debe escribir al menos 3 caracteres. ');	
	else{ window.open("index.php?pagina=inicio&buscar="+campo.value, "_self");}	
}*/