<!--

function navLink(parentPath,objectPath,targetFrame,obj){
  this.parentPath=parentPath; this.objectPath=objectPath; this.targetFrame=targetFrame;
  //alert(this.parentPath+','+this.objectPath);
  this.text=[""];
  this.href=["#"];
  tmp=this.objectPath.replace(/\./g,""); tmp=tmp.replace(/\[/g,""); tmp=tmp.replace(/\]/g,"");
  this.id=tmp;
  this.win_props=[""];
  this.newWin=false;
  if (obj){
    this.text[0]=obj.text;
	this.href[0]=obj.href;
	if (obj.win_props) {this.win_props[0]=obj.win_props; this.newWin=true;}
  }
}

function navLink_render(){
  if (navigator.appName.match('Net') && navigator.appVersion.match('4.0')) { 
    html=this.renderOld(); 
  } else{
  var winpath=''+window.location; 
  pr_pat=/&script=4\d{2}&/g;
  if ( (winpath==('http://www.corporate-ir.net/ireye/'+this.href[0]))
     || (this.text=='Press Releases' && winpath.match(pr_pat)) )  
  {
    html="<tr><td width=100% height=30><table cellpadding=0 cellspacing=0 border=0 width=100% bgcolor=#F4F4F4><tr><td width=30><img src=http://a840.g.akamai.net/7/840/614/b191c6827273aa/www.overture.com/images/shared/x.gif alt='' width=30 height=1></td><td width=100% height=30><a href=# onclick='return false;' style='font-family: verdana, arial,sans-serif; color:#FF6633; text-decoration:none; font-size:10px;'>"+this.text[0]+"</a></td><td width=16 valign=center><img src=http://media.corporate-ir.net/media_files/nsd/over/redesign/corporateir/ln_arrow.gif border=0></td></tr></table></td></tr>";	
  }	
  else{
    html="<tr><td width=100% height=30 bgcolor=#F4F4F4><table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=30><img src=http://a840.g.akamai.net/7/840/614/b191c6827273aa/www.overture.com/images/shared/x.gif alt='' width=30 height=1></td><td width=100% height=30><a href="
	if (!this.newWin) html+=this.href[0]; else html+="# ";
	if (this.newWin) html+=" onclick='"+this.objectPath+".popWin(); if(!MSIE && !NN6) window.location.reload();'"; else  html+=" onclick='if(!MSIE && !NN6) window.location.reload();'";
	//html+="  onMouseOver='"+this.objectPath+".onmouseOver();' onmouseOut='"+this.objectPath+".onmouseOut();' ";
	html+=" id="+this.id+" class=leftnav>"
	if(!MSIE && !NN6) html+="<font size=1 color=black face=verdana,arial,sans-serif>";
	html+=this.text[0]+"</a></td><td width=16><img src=http://a840.g.akamai.net/7/840/614/b191c6827273aa/www.overture.com/images/shared/x.gif alt='' width=16 height=1></td></tr></table></td></tr>";
  }	
  html+="<tr><td bgcolor=#D3D3D3><img src=http://a840.g.akamai.net/7/840/614/b191c6827273aa/www.overture.com/images/shared/x.gif alt='' width=1 height=1></td></tr>";
  }
  return html;  
}

function navLink_renderOld(){
  var winpath=''+window.location; 
  pr_pat=/&script=4\d{2}&/g;
  if ( (winpath==('http://www.corporate-ir.net/ireye/'+this.href[0]))
     || (this.text=='Press Releases' && winpath.match(pr_pat)) )  
  {
    html="<tr><td width=100%><table cellpadding=0 cellspacing=0 border=0 width=100% bgcolor=#F4F4F4><tr><td width=30><img src=http://a840.g.akamai.net/7/840/614/b191c6827273aa/www.overture.com/images/shared/x.gif alt='' width=30 height=1></td><td width=100%><a href=# onclick='return false;' style='font-family: verdana, arial,sans-serif; color:#FF6633; text-decoration:none; font-size:10px;'>"+this.text[0]+"</a></td><td width=16 valign=center><img src=http://media.corporate-ir.net/media_files/nsd/over/redesign/corporateir/ln_arrow.gif border=0></td></tr></table></td></tr>";   
  }     
  else{
    html="<tr><td width=100% bgcolor=#F4F4F4><table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=30><img src=http://a840.g.akamai.net/7/840/614/b191c6827273aa/www.overture.com/images/shared/x.gif alt='' width=30 height=1></td><td width=100%><a href="
    if (!this.newWin) html+=this.href[0];
       else html+="# onclick='"+this.objectPath+".popWin();'"; 
    html+=" id="+this.id+" style='font-family: verdana, arial,sans-serif; color:black; text-decoration:none; font-size:10px;'>"
    html+="<font size=1 color=black face=verdana,arial,sans-serif>";
    html+=this.text[0]+"</a></td><td width=16><img src=http://a840.g.akamai.net/7/840/614/b191c6827273aa/www.overture.com/images/shared/x.gif alt='' width=19 height=1></td></tr></table></td></tr>";
  }    
  html+="<tr><td><img src=http://a840.g.akamai.net/7/840/614/b191c6827273aa/www.overture.com/images/shared/x.gif alt='' width=1 height=4></td></tr>";
  return html;
}

function navLink_onmouseOver(){
  if (!MSIE) return false;
  if (MSIE) link=eval("document.all."+this.id);
  //if (NN6) link=eval("document.getElementById('"+this.id+"')");
  link.style.textDecoration='underline';
  link.style.color='#FF6633';  
}

function navLink_onmouseOut(){
  if (!MSIE) return false;
  if (MSIE)link=eval("document.all."+this.id);
  //if (NN6) link=eval("document.getElementById('"+this.id+"')");
  link.style.textDecoration='none';
  link.style.color='#000000';
}

function navLink_popWin(){
window.open(this.href[0],"",""+this.win_props[0].toString()+"");
}

navLink.prototype = new Object();
navLink.prototype.render=navLink_render;
navLink.prototype.renderOld=navLink_renderOld;
navLink.prototype.onmouseOver=navLink_onmouseOver;
navLink.prototype.onmouseOut=navLink_onmouseOut;
navLink.prototype.popWin=navLink_popWin;
//-->
