﻿function ShowHide(oWhat) {
    if (oWhat) {
        if (oWhat.style.visibility == 'hidden') {
            oWhat.style.visibility = 'visible';
            oWhat.style.display = 'block';
        }
        else {
            oWhat.style.visibility = 'hidden';
            oWhat.style.display = 'none';
        }
    }
}

function eziskShowHide() {
    var oFulltext = webnet_GetElementById('search-fulltext');
    
    ShowHide(oFulltext);

}

function eziskShowHide2009() {
    var oFulltext = webnet_GetElementById('search-fulltext2009');
    var oSecond = webnet_GetElementById('search-fulltext2010');
    oSecond.style.visibility = 'hidden';
    oFulltext.style.visibility = 'visible';
    //ShowHide(oFulltext);
}

function eziskShowHide2010() {
    var oFulltext = webnet_GetElementById('search-fulltext2010');
    var oSecond = webnet_GetElementById('search-fulltext2009');
    oSecond.style.visibility = 'hidden';
    oFulltext.style.visibility = 'visible';
    //ShowHide(oFulltext);
}