if(navigator.appName &&navigator.userAgent.indexOf('Opera') != -1){
document.writeln('<style type="text/css"><!--');
document.writeln('tt { font-size: 80%;line-height:130% }');
document.writeln('.p { line-height: 120% }');
document.writeln('p { line-height: 150% }-->');
document.writeln('<\/style>');
} else if(document.all){
document.writeln('<style type="text/css"><!--');
document.writeln('tt { font-size: 80%;line-height:130% }');
document.writeln('p { line-height: 150% }-->');
document.writeln('<\/style>');
} else {
document.writeln('<style type="text/css"><!--');
document.writeln('tt { font-size: 80%;line-height:130% }');
document.writeln('.p { line-height: 120% }');
document.writeln('p { line-height: 150% }-->');
document.writeln('<\/style>');
}
var ovimg = new Image();
ovimg = 'imgs/point1.jpg';
var ouimg0 = new Image();
ouimg0 = 'imgs/point0.jpg';
var ouimg2 = new Image();
ouimg2 = 'imgs/point0.jpg';
function Over(classname){
if(document.images){
document.images['mn'+classname].src=ovimg;
return true;
}
}
function Out(classname){
if(document.images){
var ouimg;
if(classname < 10){ ouimg=ouimg0; }
else { ouimg=ouimg2; }
document.images['mn'+classname].src=ouimg;
return true;
}
}