var DateText;

function changeto(source1, highlightcolor, source2, othercolor) {
    if (typeof source1 != "object")
	{
	source1 = document.getElementById(source1);
	source2 = document.getElementById(source2);
	}
    source1.style.backgroundColor=highlightcolor;  
    source2.style.color=othercolor;  
}

function new_window(url) {
link = window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=600,height=400,left=20,top=30");
}

function new_sm_window(url) {
link = window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=300,left=40,top=40");
}

function new_lg_window(url) {
link = window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=800,height=600,left=10,top=10");
}

function new_window_named(url,name) {
link = window.open(url,name,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=700,height=500,left=10,top=10");
}

function gotourl(url) {
	document.location.href=url;
    }
function mOver() {
	document.body.style.cursor='hand';
    }
function mOut() {
	document.body.style.cursor='';
    }

