// JavaScript - New Orleans

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 popup_window1(textpath,header)
{

//window.open(document.getElementById(text.id).alt,'image','width=800,height=700');
html = "<HTML><HEAD><TITLE>"+ header +"</TITLE>" 
		+"</HEAD><BODY LEFTMARGIN=0 "
		 + "MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>" 
		+ "<IMG SRC='" + textpath + "' BORDER=0 NAME=image " 
		+ "onload='window.resizeTo(document.image.width+10,document.image.height+10)'>"
		
		+ "</BODY></HTML>";
		
		popup=window.open('','image','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1,left=50,top=10');
 popup.document.open();
 popup.document.write(html);
 popup.document.focus();
 popup.document.close()





//var obj_window=window.open(textpath,'','width=900,height=700,resizable=yes,left=50,top=0,location=no');




}

