
// JAVASCRIPT BY THOMAS EHRAT
// LAST EDIT ON 10/29/2003


// SHOW STYLE
function show_Style(TabId) {
    if (document.getElementById) {
    eval("document.getElementById(TabId).style.visibility = 'visible'");
    } else {
    if (document.layers) {
    document.layers[TabId].visibility = show;
    } else {
    if (document.all) {
    eval("document.all." + TabId + ".style.visibility = 'visible'");
            }
        }
    }
}

// HIDE STYLE
function hide_Style(TabId) {
    if (document.getElementById) {
    eval("document.getElementById(TabId).style.visibility = 'hidden'");
    } else {
    if (document.layers) {
    document.layers[TabId].visibility = hidden;
    } else {
    if (document.all) {
    eval("document.all." + TabId + ".style.visibility = 'hidden'");
            }
        }
    }
}

// SUBMIT FORM
function Submit_Form(FormName) {
    if (document.getElementById)
    {
    eval("document.getElementById(FormName).submit()");
    }
    else
    {
    if (document.layers)
    {
    document.layers[FormName].submit();
    }
    else
    {
    if (document.all)
    {
    eval("document.all." + FormName + ".submit()");
            }
        }
    }
}

// FORCED FRAMESET
function checkFrameset() {
	if(!parent.cont) {
	location.href="index.html?" + location.pathname;
	}
}

// WINDOW OPEN
function WindowOpen(UrlName) {
window.open( UrlName ,'BJP','width=620,height=435,scrollbars=no,menubar=no,statusbar=no,toolbar=no,personalbar=no,locationbar=no,resizeable=no');
history.go();
}