function cambiar_color_over(celda){
   celda.style.backgroundColor="#ffffcc"

}
function cambiar_color_out(celda){
   celda.style.backgroundColor="#FFFFFF"
}

function showhideDiv(image, div)
{
	image = document.getElementById(image);
	div = document.getElementById(div);
	
	if (div.style.display == 'none')
	{
		div.style.display = '';
		//image.src = 'images/icons/24-em-down.png';		
		image.src = 'images/buttons/boton_busquedaavanzada.png';
	}
	else
	{
		div.style.display = 'none';
		//image.src = 'images/icons/24-em-up.png';
		image.src = 'images/buttons/boton_busquedaavanzada.png';
	}
}

function abrirPopupTareas(page,PWidth,PHeight) 
{
	numPosibilidades = 100;
	aleat = Math.random() * numPosibilidades
	aleat = Math.round(aleat)
	aleat = parseInt(100) + aleat 
	var id = aleat;
	eval("fineline"+id+"=window.open('"+page+"','fineline1','toolbar=0,scrollbars=0,location=0,status=1,menubars=0,resizable=0,width="+PWidth+",height="+PHeight+"')")
	eval("fineline"+id+".window.moveTo((screen.width/2)-(PWidth/2),(screen.height/2)-(PHeight/2))")
}
function abrirPopupDetalle(url) 
{
window.open(''+url+'','Imagen','height=700,width=600,status=no,toolbar=no,menubar=no,location=no,resizable=yes, scrollbars=yes');
}
function mostrarFichaCliente(idpropiedad, idfoto)
{
window.open('popupdetallespropiedad.php?id=' + idpropiedad + '&idfoto=' + idfoto, 'Ficha Propiedad','height=700,width=800,status=no,toolbar=no,menubar=no,location=no,resizable=yes, scrollbars=yes');

}
function mostrarFotos(idpropiedad)
{
window.open('gallery/popupfotospropiedadFlash.php?id=' + idpropiedad , 'Ficha_Propiedad','height=600,width=800,status=no,toolbar=no,menubar=no,location=no,resizable=yes, scrollbars=yes');

}
