function popUpwin (URL){
   window.open(URL,"ventana1","width=425,height=355,scrollbars=NO")
}

// tipologias
function CambiaBgColor( objeto, color )
{
    //Firefox transforma automaticamente el color, a rgb
    var colorAnterior=objeto.style.backgroundColor;
    objeto.style.backgroundColor=color;
    color=objeto.style.backgroundColor;
    objeto.style.backgroundColor=colorAnterior;
    //

     if ( objeto.style.backgroundColor != color )
     {
         objeto.style.backgroundColor = color;
     }
     else
     {
         objeto.style.backgroundColor = '';
     }
}

function verCapa(){
	Capa = document.getElementById('ver_inmuebles');
	Capa.style.display='block';
}
//


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}