var isNN4,isNN7, isIE
var coll = "";
var styleObj = "";
var hidden, visible;
var IEversion = true;
visible = 'visible'
hidden = 'hidden'
if (parseInt(navigator.appVersion)>=4){
	if(navigator.appName == "Netscape") {
	   if (parseInt(navigator.appVersion)==4){
		  isNN4 = true;
    	  visible = 'show';
  	      hidden = 'hide';
		} else {
		  isNN7 = true;
		}
	} else {
		isIE = true;
		coll ="all.";
		styleObj = ".style";
	}
}

function writeOut(div,content){
var cObj = document.getElementById(div);
 if (isIE||isNN7){
   cObj.style.visibility = visible;
   cObj.innerHTML = content;
 } else {
  cObj.visibility = visible;
  var cDoc = document.layers[div].document;
  cDoc.open();
  cDoc.writeln(content);
  cDoc.close();
 }
}

function writeMainMenu(){
var html = "<table width=150px height=350px cellpadding=0 cellspacing=0 border=0 class=links><tr>";
	   	   html += "<td valign=top height=25px><img src=\"images/dot.gif\"><a href=\"index.html\">home</a></td><td rowspan=99 bgcolor=#895685 width=1px></td></tr>";
	   	   html += "<tr><td valign=top height=25px><img src=\"images/dot.gif\"><a href=\"team.html\">the team</a></td></tr>";
	   	   html += "<tr><td valign=top height=25px><img src=\"images/dot.gif\"><a href=\"clients.html\">clients</a></td></tr>";
	   	   html += "<tr><td valign=top height=25px><img src=\"images/dot.gif\"><a href=\"contact.html\">contact</a></td></tr>";
	   	   html += "<tr><td valign=top height=175px></td></tr>";
	   	   html += "</table>";
writeOut("mainmenu",html)
}

function writeMainMenuIndex(){
var html = "<table width=150px height=120px cellpadding=0 cellspacing=0 border=0 class=links>";
	   	   html += "<tr><td valign=top height=25px><img src=\"images/dot.gif\"><a href=\"index.html\">home</a></td><td rowspan=99 bgcolor=#895685 width=1px></td></tr>";
	   	   html += "<tr><td valign=top height=25px><img src=\"images/dot.gif\"><a href=\"team.html\">the team</a></td></tr>";
	   	   html += "<tr><td valign=top height=25px><img src=\"images/dot.gif\"><a href=\"clients.html\">clients</a></td></tr>";
	   	   html += "<tr><td valign=top height=25px><img src=\"images/dot.gif\"><a href=\"contact.html\">contact</a></td></tr>";
	   	   html += "<tr><td valign=top height=45px></td></tr>";
	   	   html += "</table>";
writeOut("mainmenuindex",html)
}

