<!--
var n = (document.layers) ? 1:0;
var ie = (document.all) ? 1:0;

function makeObj(obj){
    this.css=(n) ? eval('document.'+obj):eval(obj+'.style')		
    this.hideIt=b_hideIt;
    this.showIt=b_showIt;					
    return this
}
/*
The functions for showing and hiding
*/
function b_showIt(){
    this.css.visibility="visible"
}

function b_hideIt(){
    this.css.visibility="hidden"
}

function init(){
    //making the objects to show and hide:
    text1=new makeObj('divText1')
    //text2=new makeObj('divText2')
}

function showSearchEngine(obj){
    if((obj.options[obj.selectedIndex].value)=="InternetSearch")
        text1.showIt();
    else
        text1.hideIt();
}

-->