var capaDestino = '';
function CargarPagina(_pagina,valor,tipo,capa) 
{ 
   /* 
   _pagina:String   => url del php 
   valor:Object     => parametros 
   tipo:String      => GET o POST 
   capa:String      => id del lugar donde se cargarán los datos 
   */ 
   //alert(_pagina+" - "+valor+" - "+tipo+" - "+capa)
   capaDestino = capa;
   $('#'+capa).html("<div align='center' style='padding:200px;'><p><img src='images/indicator.gif' /></p><p>Cargando...</p></div>"); 
    
   switch( String(tipo).toUpperCase() ) 
   { 
      case "GET": 
         $.get(_pagina + "?tiempo="+new Date().getTime(), valor, showResult); 
      break; 
       
      case "POST": 
         $.post(_pagina + "?tiempo="+new Date().getTime(), valor, showResult); 
      break; 
   } 
} 
 
function showResult(data,textStatus) 
//alert(capaDestino)
{ 
   switch(textStatus) 
   { 
      case "success":  
         $('#'+capaDestino).html(data); 
      break; 
 
      //otros casos: timeout, error, notmodified, parsererror 
       
      default: 
         $('#'+capaDestino).html("Error: " + txtStatus); 
   } 
}
function winFoto() {
	msg=window.open("","msg","height=300,width=400,left=100,top=100");
	msg.document.write("<html><title>Imagen Ampliada</title>");
	msg.document.write("<body leftmargin='0' marginheight='0' topmargin='0'>");
	msg.document.write("<img src='images/fotos/casa_central.jpg' onClick='javascript:window.close();' style='cursor:pointer'>");
	msg.document.write("</body></html>");
}

function winFotoS() {
	msg=window.open("","msg","height=265,width=400,left=100,top=100");
	msg.document.write("<html><title>Imagen Ampliada</title>");
	msg.document.write("<body leftmargin='0' marginheight='0' topmargin='0'>");
	msg.document.write("<img src='images/fotos/casa_sucursal_sur.jpg' onClick='javascript:window.close();' style='cursor:pointer'>");
	msg.document.write("</body></html>");
}
function winMapa() {
	msg=window.open("","msg","height=516,width=800,left=100,top=100");
	msg.document.write("<html><title>Plano Satelital</title>");
	msg.document.write("<body leftmargin='0' marginheight='0' topmargin='0'>");
	msg.document.write("<img src='images/fotos/mapa_casa_central.jpg' onClick='javascript:window.close();' style='cursor:pointer'>");
	msg.document.write("</body></html>");
}
function winMapaS() {
	msg=window.open("","msg","height=491,width=800,left=100,top=100");
	msg.document.write("<html><title>Plano Satelital</title>");
	msg.document.write("<body leftmargin='0' marginheight='0' topmargin='0'>");
	msg.document.write("<img src='images/fotos/mapa_sucursal_sur.jpg' onClick='javascript:window.close();' style='cursor:pointer'>");
	msg.document.write("</body></html>");
}
