<!--

//overtd

    function overtd(td, cl)
    {
	td.className = cl;
    }

    function outtd(td, cl)
    {
	td.className = cl;
    }

    function clicktd(newurl)
    {
   	location.href = newurl;
    }

//window

    function openWindow(location_string, width_int, height_int)
    {
        window.open(location_string,'popup','width=' + width_int + ',height=' + height_int + ',toolbar=yes,scrollbars=yes,resizable=yes,menubar=yes,status=yes,directories=yes,location=yes');
    }

//-->