<!-- Begin Hide From Old Browser

 //******************************
 //	RANDOM BANNER 
 //******************************

function choices(){
this[0] = 1;
this[1] = "<a href=\"http://www.hard-staff.com/\" target=\"_blank\"><img src=\"images/ad/unseen.gif\" border=0 ></a>";;
}

function popUpBanner(list){	
	var today = new Date();
	var choiceInstance = new choices();
	var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
}

function addAd(){
	var today = new Date();
	var choiceInstance = new choices();
	var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
	return Banner;
}

//******************************
//	Pop Windows
//******************************

//Pop-Up Windows
// Copyright 1999 by Ray Stott - ver 2.0

 var popWin = null    // use this when referring to pop-up window
 var winCount = 0
 var winName = "popWin"
 function apri(winURL, winWidth, winHeight, winFeatures, winLeft, winTop){
   var d_winLeft = 20  // default, pixels from screen left to window left
   var d_winTop = 20   // default, pixels from screen top to window top
   winName = "popWin" + winCount++ //unique name for each pop-up window
   if (apri.arguments.length >= 4)  // any additional features?
     winFeatures = "," + winFeatures
   else
     winFeatures = ""
   if (apri.arguments.length == 6)  // location specified
     winFeatures += getLocation(winWidth, winHeight, winLeft, winTop)
   else
     winFeatures += getLocation(winWidth, winHeight, d_winLeft, d_winTop)
   popWin = window.open(winURL, winName, "width=" + winWidth
            + ",height=" + winHeight + winFeatures)
   }
 function closePopWin(){    // close pop-up window if it is open
   if (navigator.appName != "Microsoft Internet Explorer"
       || parseInt(navigator.appVersion) >=4) //do not close if early IE
     if(popWin != null) if(!popWin.closed) popWin.close()
   }
 function getLocation(winWidth, winHeight, winLeft, winTop){
   return ""
   }

// SET STATUS BAR
function status(msg){
  status = msg;
  return true;
 }
 
 function getLocation(winWidth, winHeight, winLeft, winTop){
   var winLocation = ""
   if (winLeft < 0)
     winLeft = screen.width - winWidth + winLeft
   if (winTop < 0)
     winTop = screen.height - winHeight + winTop
   if (winTop == "cen")
     winTop = (screen.height - winHeight)/2 - 20
   if (winLeft == "cen")
     winLeft = (screen.width - winWidth)/2
   if (winLeft>0 & winTop>0)
     winLocation =  ",screenX=" + winLeft + ",left=" + winLeft
                 + ",screenY=" + winTop + ",top=" + winTop
   else   
function getLocation(winWidth, winHeight, winLeft, winTop){
   var winLocation = ""
   if (winLeft < 0)
     winLeft = screen.width - winWidth + winLeft
   if (winTop < 0)
     winTop = screen.height - winHeight + winTop
   if (winTop == "cen")
     winTop = (screen.height - winHeight)/2 - 20
   if (winLeft == "cen")
     winLeft = (screen.width - winWidth)/2
   if (winLeft>0 & winTop>0)
     winLocation =  ",screenX=" + winLeft + ",left=" + winLeft
                 + ",screenY=" + winTop + ",top=" + winTop
   else
     winLocation = ""
   return winLocation
   }     winLocation = ""
   return winLocation
   }
   
// Stop Hide From Old Browser -->