<!--

function openPicture(imageName)
 {
    newWindow=window.open('', 'newWindow', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=600,height=600');
    newWindow.document.open();
	newWindow.document.write('<html><title>Khevin Real Estate</title><body bgcolor="#E1E1E1" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td valign="middle"><p align="center">'); 
	newWindow.document.write('<img border=1 alt="Khevin Real Estate" src="'+imageName+'"></td></tr></table>'); 
	newWindow.document.write('</body></html>'); 
	newWindow.document.close();
	newWindow.focus();
}

function clock() 
{
document.write("<font color='#000000' font size='1' font face='tahoma'>")
var mydate=new Date()
var year=mydate.getYear()
var hours = mydate.getHours()
var minutes = mydate.getMinutes()
var timeValue = "" + ((hours > 12) ? hours - 12 : hours)
timeValue  += ((minutes < 10) ? ":0" : ":") + minutes
timeValue  += (hours >= 12) ? " P.M." : " A.M."
var day=mydate.getDay();
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sabado")
var montharray=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre")
document.write("&nbsp; "+timeValue+" "+dayarray[day]+" "+daym+" de "+montharray[month]+" &nbsp;")
document.write("</font>")
}

//-->
