<!-- Hide from other Browsers
//**** BROWSER VERSION ****//
function Is() {
    var agt=navigator.userAgent.toLowerCase();
    //**** BROWSER VERSION ****//
    this.major   = parseInt(navigator.appVersion);
    this.minor   = parseFloat(navigator.appVersion);
    this.nav     = ((agt.indexOf('mozilla')!=-1) && ((agt.indexOf('spoofer')==-1) && (agt.indexOf('compatible') == -1)));
    this.ie      = (agt.indexOf('msie') != -1);
    //******** PLATFORM *******//
    this.win     = ( (agt.indexOf('win')!=-1) || (agt.indexOf('16bit')!=-1) );
    this.mac     = (agt.indexOf('mac')!=-1);
}

//--------------------------------
var is = new Is(); 
var win = false; var mac = false;
if (is.win) { win = true; } else if (is.mac) { mac = true; }
var bLebel1=1;
 if (is.nav) {
     if (is.minor >= 3) { bLebel1 = 1; }
 } else {
     if (is.minor > 4.05) { bLebel1 = 2;
     } else { bLebel1 = 1; }
 }
//--------------------------------

function On(jpInfo,usInfo) { msgOver(jpInfo,usInfo); }
function Off() { msgOver('', ''); }
function msgOver(jpInfo,usInfo) {
 if (bLebel1 > 1) { window.status=usInfo; } else { window.status=jpInfo; }
}
// End Hide -->
