var uAgent=navigator.userAgent;

var strTop, version, mes;

if(uAgent.indexOf("Opera")!=-1){ // Operaの判定

    strTop=uAgent.indexOf("Opera")+6;

    version=uAgent.substring(strTop, strTop+1);

    if(version>=7) // バージョン7より上か下か

        mes=" ";  //Opera 7以上

    else

        mes="-->";  //Opera 6以下

} else if(uAgent.indexOf("MSIE")!=-1){ // IEの判定

    strTop=uAgent.indexOf("MSIE")+5;

    version=uAgent.substring(strTop, strTop+1);

    if(version>=5) // バージョン5より上か下か

        mes=" ";  //Internet Explorer 5以上

    else

        mes="-->";  //Internet Explorer 4.x以下

} else if(uAgent.indexOf("Gecko/")!=-1){ // Mozilla系（N6以上など）の判定

    if(uAgent.indexOf("rv:")!=-1){

        strTop=uAgent.indexOf("rv:")+3;

        version=uAgent.substring(strTop, strTop+1);

        if(version>=1) // バージョン1.0より上か下か

            mes=" ";  //Mozilla系（ver1.0以上 / Netscape 7以上など）

        else

            mes="-->";  //Mozilla系（ver0.9x以下 / Netscape 6など）

    } else

        mes="-->";  //Mozilla系（ver0.9x以下 / Netscape 6など）

} else // その他のブラウザ

    mes="-->";  //その他のブラウザ

document.write(" "+mes+" ");