function w(idwin){
	
	 openWin("fotos/f"+idwin+"G.jpg", 0,0,1, 0, 0, 610,460, 11, 11, "fotos");
	
}
function w2(idwin){
	
	 openWin("fotos/f"+idwin+"G.jpg", 0,0,1, 0, 0, 367,550, 11, 11, "fotos");
	
}
function w3(foto){
	
	 openWin("fotos/"+foto , 0,0,1, 0, 0, 692,600, 11, 11, "mapa");
	
}


 function openWin(url, toolbar, menubar,status, scrollbars, resizable, ancho, alto, top, left, nomWin){ 
 		 var abre;
    	 string1="test=window.open('"+url+"'";
		 string2=",'"+nomWin+"','status="+status+",scrollbars="+scrollbars+",resizable="+resizable+", width="+ancho+",height="+alto+", top="+top+", left="+left+",toolbar="+toolbar+",menubar="+menubar+"')";
		 abre=string1+string2;
		 //alert(abre);
		 eval(abre);
		 test.focus();
		
		
  } 

