
var linkset=new Array()

linkset[0]='<table border="0" cellspacing="0" cellpadding="2">'
linkset[0]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/presentation/index.php">TUBBYDEV</a></td></tr>'

linkset[0]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/presentation/couts.php">METHODES, COUTS</a></td></tr>'
linkset[0]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/presentation/offshore.php">ACTUALITES DE l\'OFFSHORE</a></td></tr>'
linkset[0]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/presentation/tubbydev.php">TUBBYDEV DANS LA PRESSE</a></td></tr>'
linkset[0]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/presentation/contact.php">CONTACT</a></td></tr>'
linkset[0]+='</table>'

linkset[1]='<table border="0" cellspacing="0" cellpadding="2">'
linkset[1]+='<tr><td align="left"><b><a class="menu" href="http://tubbydev.typepad.com/offshore_programming/2005/09/rgie_dlocalise_.html">EQUIPE DEDIEE</a></td></tr>'
linkset[1]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/offre/index.php">DEVELOPPEMENT FORFAITISE</a></td></tr>'
linkset[1]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/offre/tma.php">TMA</a></td></tr>'
linkset[1]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/offre/gcpme.php">GRANDS COMPTES, PME</a></td></tr>'
linkset[1]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/offre/startups.php">START-UPS</a></td></tr>'
linkset[1]+='</table>'

linkset[2]='<table border="0" cellspacing="0" cellpadding="2">'
linkset[2]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/web/index.php">SITE SIMPLE</a></td></tr>'
linkset[2]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/web/refonte.php">REFONTE DE SITE INTERNET</a></td></tr>'
linkset[2]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/web/blogs.php">PROFESSIONNALISATION DE BLOGS</a></td></tr>'
linkset[2]+='<tr><td align="left"><b><a class="menu" href="http://www.tubbydev.net/web/site-blog.php">VOTRE SITE VAUT IL UN BLOG ?</a></td></tr>'
linkset[2]+='</table>'

var ie4 = document.all&&navigator.userAgent.indexOf("Opera")==-1
var ns6 = document.getElementById&&!document.all
var ns4 = document.layers

function showmenu(e, which, x, y, w, h) {
  if (!document.all&&!document.getElementById&&!document.layers)
  return

  clearhidemenu()

  menuobj = ie4 ? document.all.popmenu : ns6 ? document.getElementById("popmenu") : ns4 ? document.popmenu : ""
  menuobj.thestyle = (ie4||ns6) ? menuobj.style : menuobj

  menushdw = ie4 ? document.all.shadow : ns6 ? document.getElementById("shadow") : ns4 ? document.shadow : ""
  menushdw.thestyle = (ie4||ns6) ? menushdw.style : menushdw

  if (ie4||ns6) {
    menuobj.innerHTML=which

    menushdw.innerHTML=which
  } else {
    menuobj.document.write('<layer name=gui bgColor=#E6E6E6 width=165 onmouseover="clearhidemenu()" onmouseout="hidemenu()">'+which+'</layer>')
    menuobj.document.close()

    menushdw.document.write('<layer name=gui bgColor=#E6E6E6 width=165 onmouseover="clearhidemenu()" onmouseout="hidemenu()">'+which+'</layer>')
    menushdw.document.close()
  }

  //menuobj.contentwidth = (ie4||ns6) ? menuobj.offsetWidth : menuobj.document.gui.document.width
  //menuobj.contentheight = (ie4||ns6) ? menuobj.offsetHeight : menuobj.document.gui.document.height

  menuobj.thestyle.width = w
  menuobj.thestyle.height = h

  menushdw.thestyle.width = w
  menushdw.thestyle.height = h

  var xset;
  var xscreen;
  xscreen = screen.width;
  xset = (xscreen - 770) / 2;

  menuobj.thestyle.left = x + xset;
  menuobj.thestyle.top = y
  menuobj.thestyle.visibility="visible"

  menushdw.thestyle.left = x + 4 + xset;
  menushdw.thestyle.top = y + 4
  menushdw.thestyle.visibility="visible"
}

function contains_ns6(a, b) {
  while (b.parentNode)
  if ((b = b.parentNode) == a)
  return true; 
  return false;
}

function hidemenu() {
  if (window.menuobj) {
    menuobj.thestyle.visibility=(ie4||ns6) ? "hidden" : "hide"
  }
  if (window.menushdw) {
    menushdw.thestyle.visibility=(ie4||ns6) ? "hidden" : "hide"
  }
}

function dynamichide(e) {
  if (ie4&&!menuobj.contains(e.toElement)) {
    hidemenu()
  } else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget)) {
    hidemenu()
  }
}

function delayhidemenu() {
  if (ie4||ns6||ns4) {
    delayhide=setTimeout("hidemenu()",500)
  }
}

function clearhidemenu() {
  if (window.delayhide) {
    clearTimeout(delayhide)
  }
}

function highlightmenu(e,state) {
  if (document.all) {
    source_el = event.srcElement
  } else if (document.getElementById) {
    source_el = e.target
  }
  
  if (source_el.className=="menuitems") {
    source_el.id = (state=="on") ? "mouseoverstyle" : ""
  } else {
    while(source_el.id!="popmenu") {
      source_el = document.getElementById ? source_el.parentNode : source_el.parentElement
      if (source_el.className=="menuitems") {
        source_el.id=(state=="on") ? "mouseoverstyle" : ""
      }
    }
  }
}

if (ie4||ns6)
  document.onclick=hidemenu


function openpopup(page, anchor, w, h, x, y) {
    win = window.open(page+'.php#'+anchor, '', 'left='+x+',top='+y+',width='+w+',height='+h+', resizable=0, scrollbars=1');
    win.focus();
}

function opendocs(doc, w, h, x, y) {
    win = window.open('../docs/'+doc, 'Document', 'left='+x+',top='+y+',width='+w+',height='+h+', resizable=1, scrollbars=1');
    win.focus();
}

function openpresse(doc, url, w, h, x, y) {
    var path;
    if (url == true) path = doc;
    else path = '../presse/'+doc;
    win = window.open(path, 'Presse', 'left='+x+',top='+y+',width='+w+',height='+h+', resizable=1, scrollbars=1');
    win.focus();
}

function openopteamist(w, h, x, y) {
    win = window.open('opteamist.html', 'Opteamist', 'left='+x+',top='+y+',width='+w+',height='+h+', resizable=0, scrollbars=0');
    win.focus();
}

function opteamistman(w, h, x, y) {
    win = window.open('Opteamist_UserManual.htm', 'Opteamist', 'left='+x+',top='+y+',width='+w+',height='+h+', resizable=1, scrollbars=1');
    win.focus();
}

function openoffshore(page, w, h, x, y) {
    win = window.open('offshore-programming/'+page+'.html', '', 'left='+x+',top='+y+',width='+w+',height='+h+', resizable=0, scrollbars=1');
    win.focus();
}