function popitup(url) {
	newwindow=window.open(url,'name','height=600','width=550');
}

function shToggle(content) {
	if (document.getElementById(content).style.display == "none")
		document.getElementById(content).style.display = "block"
	else
		document.getElementById(content).style.display = "none"
}

menu_status = new Array();
function showHide(theid){

    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
};


<!-- Begin
function adPop(URL,width,height,left,top) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height+',left='+left+',top='+top);");
}

function adPop2(URL) {
day = new Date();
id = day.getTime();
eval("page2" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=910,height=700,left = 480,top = 180');");
}
// End -->

