function CambiaProp(objeto,propiedad,valor){
var cadena = "";
cadena=objeto+'.style.'+propiedad+'='+valor;
eval(cadena);
return true;
}

function SinMouse_texto(objeto){
CambiaProp(objeto,"color",'"#4283C4"');
return true;
}

function ConMouse_texto(objeto){
CambiaProp(objeto,"color",'"#0099CC"');
return true;
}

function SinMouse_celda(objeto){
CambiaProp(objeto,"background",'"#D8E5F2"');
return true;
}

function ConMouse_celda(objeto){
CambiaProp(objeto,"background",'"#FFFFFF"');
return true;
}

function SinMouse_celda2(objeto){
CambiaProp(objeto,"backgroundImage","'url(images/bgmo3.gif)'");
return true;
}

function ConMouse_celda2(objeto){
CambiaProp(objeto,"backgroundImage","'url(images/bgmo4.gif)'");
return true;
}

function go_cat(form) {
var myindex=form.category.selectedIndex
location=form.category.options[myindex].value;
}

function go_inv(form) {
var myindex=form.investment.selectedIndex
location=form.investment.options[myindex].value;
}

function go_abc(form) {
var myindex=form.alpha.selectedIndex
location=form.alpha.options[myindex].value;
}

function GetFecha()
{
	today = new Date();
	date = today.getDate();
	month = today.getMonth();
	year = today.getYear();			
	
	if (month == 0) monthName = "January"
	else if (month == 1) monthName = "February"
	else if (month == 2) monthName = "March"
	else if (month == 3) monthName = "April"
	else if (month == 4) monthName = "May"
	else if (month == 5) monthName = "June"
	else if (month == 6) monthName = "July"
	else if (month == 7) monthName = "August"
	else if (month == 8) monthName = "September"
	else if (month == 9) monthName = "October"
	else if (month == 10) monthName = "November"
	else monthName = "December"
	
	return(monthName + " " + date + ", " + year);
}

function winwm()
{
	popupWin = window.open('wm/', 'wm', 'status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width=740,height=500')
}