function today() {

<!-- Begin

// Get today's current date.
var now = new Date();

// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

// Calculate the number of the current day in the week.
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

// Calculate four digit year.
function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}

// Join it all together
today =  days[now.getDay()] + ", " +
         months[now.getMonth()] + " " +
         date + " " +
         (fourdigits(now.getYear())) ;

// Print out the data.
document.write(today);

//  End -->
}

function StatusBar(text) {
	if ( text == undefined ) { text= "" ;}
	window.status = text ;
}

function _S(id) {
	document.S.id.value = id;
	document.S.submit();
}

function _P(id) {

ancho=650;alto=610; x="propiedad";
pagina='propiedad.php?id='+id;
posX = (screen.availWidth - ancho )/2;
posY = (screen.availHeight - alto)/2;
eval("page" + x + " = window.open(pagina,'" + x + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=" + ancho +",height=" + alto + ",left=" + posX + ",top=" + posY + "');");
eval("page" + x + ".focus();");

}

function _N(id) {

ancho=500;alto=300; x="noticia";
pagina='noticia.php?id='+id;
posX = (screen.availWidth - ancho )/2;
posY = (screen.availHeight - alto)/2;
eval("page" + x + " = window.open(pagina,'" + x + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=" + ancho +",height=" + alto + ",left=" + posX + ",top=" + posY + "');");
eval("page" + x + ".focus();");

}