function ChangeImage(image1,image2){
    image1.src = image2.src;
}

function popUp(URL) {
	window.open(URL,'','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=500');
}


function popUp2(strURL,strHeight,strWidth) {   
	var strOptions="";   
	strOptions="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,height="+strHeight+",width="+strWidth;
	window.open(strURL,'',strOptions);
} 


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';
        }
    }
}


function showHideInline(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show_inline') {
           switch_id.className = 'show_inline';
           menu_status[theid] = 'show_inline';
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
}


