<!-- 
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
if(document.images) {
ftover = new Array(12);
ftout = new Array(12);
for(var n=1;n<=12;n++) {
ftover[n]=new Image(200,25);
ftout[n]=new Image(200,25);
ftover[n].src="images/bar"+n+"b.gif";
ftout[n].src="images/bar"+n+".gif";
}
}
function tabOn(i) {
if(document.images) document.images["ft"+i].src=ftover[i].src;
}
function tabOff(i) {
if(document.images) document.images["ft"+i].src=ftout[i].src;
}
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
//-->
