// Yocoya custom Hide and Show toggle

function yyHideShow(objectID,imgID){

    theImg = document.getElementById(imgID);

    theDiv = document.getElementById(objectID);

    if(theDiv.style.display == 'none' || theDiv.style.display == '' || theDiv.style == null){

        theImg.style.display = 'none';

        document.getElementById(objectID).style.display = 'block';}

    else{

        theImg.style.display = 'block';

        document.getElementById(objectID).style.display = 'none';}

    return;

}