
function MM_openBrWindow(theURL,winName,features)
{
    window.open(theURL,winName,features);
}

function openWindow(url,width,height)
{
        window.open(url,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height+',top=100,left=100')
}

function changeTDcolor(td,color)
{
 var NAV = (navigator.appName.indexOf('Netscape') != -1)

 if(!NAV) {
  td.bgColor=color;
 }
}
