<!-- 
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(10);
ftout = new Array(10);
for(var n=1;n<=10;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 message="Sorry, that function is disabled."; 

function click(e) {

if (document.all) {

if (event.button == 2) {

alert(message);

return false;

}

}

if (document.layers) {

if (e.which == 3) {

alert(message);

return false;

}

}

}

if (document.layers) {

document.captureEvents(Event.MOUSEDOWN);

}

document.onmousedown=click;

// --> 