// V2 (using browser.js)
theExpertise=new Array();
theExpertise[0]=new Array();
theExpertise[1]=new Array();
theExpertise[2]=new Array();
theExpertise[3]=new Array();
theExpertise[4]=new Array();
theExpertise[5]=new Array();
theExpertise[0][0]="Operating systems";
theExpertise[0][1]="Windows NT<br>Unix<br>Solaris<br>Linux";
theExpertise[1][0]="Databases";
theExpertise[1][1]="Oracle<br>SQL Server<br>Sybase<br>Informix<br>MySQL<br>Access";
theExpertise[2][0]="Programming Languages";
theExpertise[2][1]="Java<br>C/C++<br>Visual Basic<br>Perl";
theExpertise[3][0]="Web Tech<br>(front end)";
theExpertise[3][1]="HTML, DHTML, CSS<br>VRML<br>XML<br>WAP, WML<br>VBScript<br>JavaScript<br>Shockwave, Flash ";
theExpertise[4][0]="Web Tech<br>(back end)";
theExpertise[4][1]="Netscape Application Server/iPlanet, Oracle Application Server, J2EE, CORBA, DCOM, EJB, LDAP, Servlets<br>JSP, ASP, PHP<br>Streaming Media";
theExpertise[5][0]="Graphics";
theExpertise[5][1]="Kinetix 3D Studio Max<br>Adobe Photoshop<br>Fractal Design Painter<br>Adobe Illustrator<br>Corel Draw<br>Macromedia Freehand";
//***************************************************************************************
function ShowExpertise(intExpertiseID)
{
 if (typeof(btOld)=="undefined" || btOld) return;
 var x,y,theLayer,beforeText,afterText,insideText;
 beforeText="<table border=0 cellspacing=0 cellpadding=0  class=darkblue width='105' height='144'><tr><td valign=top><table border=0 cellspacing=1 cellpadding=0 width='100%' height='144'><tr class=light><td class=popuptextb valign=center align=center>";
 insideText="</td></tr><tr class=light><td class=popuptext valign=center align=center>";
 afterText ="</td></tr></table></td></tr></table>";

 if ( !(theLayer=GetLayer("Expertise","ShowExpertise")) ) return;
 WriteLayerInnerHTML(theLayer, beforeText+theExpertise[intExpertiseID][0]+insideText+theExpertise[intExpertiseID][1]+afterText);

 if (btNN4) {
   x=document.images["expertiseCenter"].x-7,
   y=document.images["expertiseCenter"].y+1;
 } else {
   // DOM ?
   _getRealCoords(document.expertiseCenter);
   x=_gRC_X-7;
   y=_gRC_Y+1;
 }
 MoveLayer("Expertise",x,y);
 ShowLayer("Expertise",1);
 return;
}
//***************************************************************************************
function HideExpertise()
{
 ShowLayer ("Expertise",0);
 return;
}
//***************************************************************************************
var _gRC_X=0,_gRC_Y=0;
function _getRealCoords(imgElem)
{
 var xPos = parseInt(imgElem.offsetLeft+"px");
 var yPos = parseInt(imgElem.offsetTop+"px");
 var tempEl = imgElem.offsetParent;
 while (tempEl != null) {
   xPos += parseInt(tempEl.offsetLeft+"px");
   yPos += parseInt(tempEl.offsetTop+"px");
   tempEl = tempEl.offsetParent;
 }
 _gRC_X=xPos;
 _gRC_Y=yPos;
 return;
}
//***************************************************************************************
