// JavaScript Document
//===========================================================================
function moveOnPanel(){
  if (PanelY<PosY){ 
    if ((PosY-PanelY)<increment){
      PanelY=PosY;
    }else{
      PanelY=PanelY+increment;
    }
    if (is_NS5up){
      document.getElementById('panelShow').style.top=PanelY+"px";
    }else{
      eval(Lq+'panelShow'+Sq+'.top=PanelY');
    }
    setTimeout('moveOnPanel()',speed);
  } else { window.clearInterval(speed); }
}

function moveOffPanel(){
if (PanelY>OffY){ 
PanelY=PanelY-increment;
if (is_NS5up){
document.getElementById('panelShow').style.top=PanelY+"px";
}else{
eval(Lq+'panelShow'+Sq+'.top=PanelY');
}
setTimeout('moveOffPanel()',speed);
}
}

// Set Show to "yes" to show the panel on start-up.
// Set Show to "no" to show the selector on start-up.

Show ="no";

// Set OffX in pixels to a negative number 
// somewhat larger than the width of the panel.

var OffX = 0;
var OffY = -150;

// Set the PosX and PosY variables
// to the location on the screen where the
// panel should position (in pixels) when stopped.

var PosX =  0;
var PosY =  0;

// Usually, use the settings shown; but you can
// change the speed and the increment of motion
// across the screen, below.

var speed        = 4;
var increment    = 5;
var incrementNS4 = 10; // for slower NS4 browsers

// do not edit below this line
// ===========================

var is_NS = navigator.appName=="Netscape";
var is_Ver = parseInt(navigator.appVersion);
var is_NS4 = is_NS&&is_Ver>=4&&is_Ver<5;
var is_NS5up = is_NS&&is_Ver>=5;

var PanelX=OffX;
var PanelY=OffY;

var SelX=PosX;
var SelY=PosY;

var sPosX=PosX;
var sPosY=PosY;
var sOffX=OffX;
var sOffY=OffY;

// NEVER SET THIS!!
if (Show=="yes"){
sPosX=OffX;
sPosY=OffY;

sOffX=PosX;
sOffY=PosY;

PanelX=sOffX;
PanelY=sOffY;

SelX=sPosX;
SelY=sPosY;
}

if (is_NS4){
increment=incrementNS4;
Lq="document.layers.";
Sq="";
eval(Lq+'panelShow'+Sq+'.left=sOffX');
eval(Lq+'panelShow'+Sq+'.top=PosY');
}else{
Lq="document.all.";
Sq=".style";
document.getElementById('panelShow').style.left=sOffX+"px";
document.getElementById('panelShow').style.top=PosY+"px";
}  

//===========================================================================

//document.write('<div id="lyrKeywords" style="position:absolute; nowrap; left:0px; top:0px; width:100%; height:25px; z-index:2; vertical-align: center; overflow: hidden;">');
//document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0" height="25"><tr><td valign="middle" nowrap><span class="keyword-bar">');

// Your Keywords Go Here
//document.write('&nbsp;&nbsp;ASP·DATABASE·WEB DESIGN·MULTIMEDIA·3D·GRAPHICS·APPLICATIONS·WEBSITES·DEVELOPMENT·ANIMATION·FLASH·PRESENTATION·CD·DVD·MEDIA·CODING·SOFTWARE·VB·VBA·INTEGRATION·CLIENT-SERVER');


//document.write('</span></td></tr></table></div>');

