function cambiarFoto(ruta,foto)
{	
	document.getElementById('img_acambiar').src = '/imagenes/web/trabajos/' + ruta + '/imagen_g_' + foto+'.jpg';
}


function abrirImagen(foto) { 
	//alert(foto);
	alpha=window.open("","","toolbar=no,location=no,menubar=no,scrollbars=no,status=no,resizable=no,width=800,height=600,top=100,left=150"); 
	x=alpha.document; 
	x.write("<head><SCRIP"+"T>") 
	x.write("function dymanicResize(){") 
	x.write("window.resizeTo(") 
	x.write("document.im1.width+11,") 
	x.write("document.im1.height+53);") 
	x.write("};document.title='---------';</SCRIP"+"T></head>") 
	x.write("<body topmargin=0 leftmargin=0 scroll=no toolbar=no location=no menubar=no scrollbars=no status=no>") 
	//x.write("<img src='"+foto+"' name='im1' width='800' height='600'>") 
	x.write("<img src='"+foto+"' name='im1' onLoad='dymanicResize()'>") 
	
	x.write("</body>") 
	x.close() 
	alpha.focus() 
} 


