/*---------------------------------------------------------------------------*/
/* hide-local.js ݒ                                                        */
/*---------------------------------------------------------------------------*/
function seek(id){
    document.getElementById(id).style.display="block";
    document.getElementById(id).style.position="absolute";
}

function hide(id){
    document.getElementById(id).style.display="none";
}

function hideIeSix(id){
    if (typeof document.body.style.maxHeight=="undefined") {
        if( String(document.location).indexOf("genre",0)>0 ) {
            document.getElementById(id).style.display="none";
        }
    }
}

function hideIeSixSearch(id){
    if (typeof document.body.style.maxHeight=="undefined") {
        if( String(document.location).indexOf("search",0)>0 ) {
            document.getElementById(id).style.display="none";
        }
    }
}

function seekIeSixFleft(id){
    if (typeof document.body.style.maxHeight=="undefined") {
        if( String(document.location).indexOf("genre",0)>0 ) {
            document.getElementById(id).style.display="block";
            document.getElementById(id).style.width="120px";
            document.getElementById(id).style.float="right";
        }
    }
}

function seekIeSixSearch(id){
    if (typeof document.body.style.maxHeight=="undefined") {
        if( String(document.location).indexOf("search",0)>0 ) {
            document.getElementById(id).style.display="block";
        }
    }
}

