function CargarFoto(imagen, ancho, alto, nombreVentana, titulo){
	
	derecha=(screen.width-ancho)/2;
	arriba=(screen.height-alto)/2;
	string="toolbar=0,scrollbars=yes,menubar=0,resizable=0,width="+ancho+", height="+alto+", left="+derecha+",top="+arriba+", borderLeft="+0+", margin="+0+", padding="+0+"";
	fin=window.open(imagen,"",string);
} 

function ColocarImagen(src,posicion,texto){
	document.write("<img src="+src+" alt='"+texto+"' title='"+texto+"' border='0' align="+posicion+" hspace='7' vspace='5'>");
	
}

function CargarPagina(pagina, ancho, alto){
	derecha=(screen.width-ancho)/2;
	arriba=(screen.height-alto)/2;
	ancho = ancho;
	alto = alto;
	string="toolbar=0,scrollbars=0,location=0,statusbar=0,status=0,menubar=0,resizable=0,titlebar=0,title=0,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+",scrollbars=no,resizable=no";
	fin=window.open(pagina,"",string);
}

function abrir_ventana_resultados()
{
	consulta = document.getElementById('textoBuscar').value;
	if(consulta=="")
		alert('Introduzca su consulta');
	else{
		url = 'busqueda.jsp?consulta='+consulta+' site:www.ptsgranada.com';
		parametros = "toolbar=0,scrollbars=1,location=0,statusbar=0,status=0,menubar=0,resizable=0,titlebar=0,title=0,width=600,height=650,left=200,top=150,scrollbars=no,resizable=no";
		window.open(url , "" , parametros);
	}
}

function abrir_imagen(ruta_imagen,titulo,ancho_imagen,alto_imagen)
{

       
   medio_x = screen.width/2;
   medio_y = screen.height/2;
   pos_x = medio_x - ancho_imagen/2;
   pos_y = medio_y - alto_imagen/2;
   
   parametros = "toolbar=0,scrollbars=1,location=0,statusbar=0,status=0,menubar=0,resizable=0,titlebar=0,title=0,left="+pos_x+",top="+pos_y+",resizable=no";
   url = "ampliar.jsp?ruta="+ruta_imagen+"&titulo="+titulo+"&ancho="+ancho_imagen+"&alto="+alto_imagen;
   window.open(url,'_blank',parametros); 
   



}


function abrir_ventana_resultados_en()
{
	consulta = document.getElementById('textoBuscar').value;
	if(consulta=="")
		alert('Introduzca su consulta (ingles)');
	else{
		url = 'busqueda_en.jsp?consulta='+consulta+' site:www.ptsgranada.com';
		parametros = "toolbar=0,scrollbars=1,location=0,statusbar=0,status=0,menubar=0,resizable=0,titlebar=0,title=0,width=600,height=650,left=200,top=150,scrollbars=no,resizable=no";
		window.open(url , "" , parametros);
	}
}

function AbrirImagenVentana(ruta_imagen,titulo,width,height)
{
   img = new Image();
   img.src = ruta_imagen;
   alto = img.height;
   ancho = img.width;
        
   medio_x = screen.width/2;
   medio_y = screen.height/2;
   pos_x = medio_x - ancho/2;
   pos_y = medio_y - alto/2;
   parametros = "toolbar=0,scrollbars=0,location=0,statusbar=0,status=0,menubar=0,resizable=0,titlebar=0,title=0,width="+width+",height="+height+",left="+pos_x+",top="+pos_y+",resizable=no";
   url = "imagen.jsp?ruta="+ruta_imagen+"&titulo="+titulo;
   window.open(url,'_blank',parametros); 
}

function AbrirImagenVentana2(ruta_imagen,titulo,width,height)
{
   img = new Image();
   img.src = ruta_imagen;
   alto = img.height;
   ancho = img.width;
        
   medio_x = screen.width/2;
   medio_y = screen.height/2;
   pos_x = medio_x - ancho/2;
   pos_y = medio_y - alto/2;
   parametros = "toolbar=0,scrollbars=0,location=0,statusbar=0,status=0,menubar=0,resizable=0,titlebar=0,title=0,width="+width+",height="+height+",left="+pos_x+",top="+pos_y+",resizable=no";
   url = "ampliar.jsp?ruta="+ruta_imagen+"&titulo="+titulo+"&alto="+height+"&ancho="+width;
   window.open(url,'_blank',parametros); 
}
