//script

var browser = new Object();

var win=false;
if (navigator.userAgent.indexOf("Win")!=-1) 
{
	win=true;
}else

browser.version = parseInt(navigator.appVersion);

browser.isNavigator = false;
browser.isIE = false;
browser.isMozilla = false;

if (navigator.appName=="Netscape"&&parseFloat(navigator.appVersion)>=4.7)
  { browser.isMozilla = true; }
if (navigator.appName.indexOf("Netscape") != -1) 
  { browser.isNavigator = true; }
if (navigator.appName.indexOf("Microsoft") != -1)
  { browser.isIE = true; }

if ((browser.isNavigator == true)&&win&&(!browser.isMozilla))
        {
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.parent{}');
	document.writeln('td         { color: #c73b1b; font-size: 11px; font-family: lucida console, monaco, courier new, courier ce, courier; line-height: 13px; }');
	document.writeln('.name      { color: black; }');
	document.writeln('.place     { color: #aea432; }');
	document.writeln('.time      { color: #645c2f; }');
	document.writeln('.org       { color: #4f8734; }');
	document.writeln('a          { color: #c73b1b; }');
	document.writeln('a:link, a:visited   { text-decoration: none; }');
	document.writeln('a:active, a:hover   { color: white; background: #c73b1b; }');
	document.writeln('a.name     { color: black; }');
	document.writeln('a.name:active, a.name:hover { color: white; background: black; }');
	document.writeln('a.place    { color: #aea432; }');
	document.writeln('a.place:active, a.place:hover { color: white; background: #aea432; }');
	document.writeln('a.time     { color: #645c2f; }');
	document.writeln('a.time:active, a.time:hover { color: white; background: #645c2f; }');
	document.writeln('a.org      { color: #4f8734; }');
	document.writeln('a.org:active, a.org:hover { color: white; background: #4f8734; }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	} else {
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.parent{}');
	document.writeln('td         { color: #c73b1b; font-size: 10px; font-family: lucida console, monaco, courier new, courier ce, courier; line-height: 12px; }');
	document.writeln('.name      { color: black; }');
	document.writeln('.place     { color: #aea432; }');
	document.writeln('.time      { color: #645c2f; }');
	document.writeln('.org       { color: #4f8734; }');
	document.writeln('a          { color: #c73b1b; }');
	document.writeln('a:link, a:visited   { text-decoration: none; }');
	document.writeln('a:active, a:hover   { color: white; background: #c73b1b; }');
	document.writeln('a.name     { color: black; }');
	document.writeln('a.name:active, a.name:hover { color: white; background: black; }');
	document.writeln('a.place    { color: #aea432; }');
	document.writeln('a.place:active, a.place:hover { color: white; background: #aea432; }');
	document.writeln('a.time     { color: #645c2f; }');
	document.writeln('a.time:active, a.time:hover { color: white; background: #645c2f; }');
	document.writeln('a.org      { color: #4f8734; }');
	document.writeln('a.org:active, a.org:hover { color: white; background: #4f8734; }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	} 


function sstatus(str) {
  window.status = "   "+str;
  return true;
}

function cstatus() {
  window.status = '';
  return true;
}

function sendIt(fileName) {
  if (fileName != "") {
    location.href=fileName
  }
}


function hide(object) {
    if (document.getElementById && document.getElementById(object) != null)  //ns6+ or ie5+
         node = document.getElementById(object).style.visibility='hidden';
    else if (document.layers && document.layers[object] != null)             //ns4
         document.layers[object].visibility = 'hidden';
    else if (document.all)						     //ie4+
         document.all[object].style.visibility = 'hidden';
}

function show(object) {
    if (document.getElementById && document.getElementById(object) != null)
         node = document.getElementById(object).style.visibility='visible';
    else if (document.layers && document.layers[object] != null)
        document.layers[object].visibility = 'visible';
    else if (document.all)
        document.all[object].style.visibility = 'visible';
}

function hideDt() {
    hide("dt1"); hide("dt2"); hide("dt3"); hide("dt4"); hide("dt5"); hide("dt0"); 
}

function hideOrg() {
    hide("org1"); hide("org2"); hide("org3"); hide("org4"); hide("org5"); 
    hide("org6"); hide("org7"); hide("org8"); hide("org9"); hide("org10");
    hide("org11");
}

function hidePlc() {
    hide("plc1"); hide("plc2"); hide("plc3"); hide("plc4"); hide("plc5"); 
    hide("plc6"); hide("plc7"); hide("plc8"); hide("plc9");  
}


