
    function showaddress(n)
	{
		var add = "add_" + n;
		var img = "arr_" + n;		
		menu = document.getElementById(add); 
		arrowImg = document.images[img]  ; 
		if(menu.style.display == "block")
		{
			menu.style.display = "none";
			arrowImg.src = "images/bizarrowright.gif"
		}
		else
		{
			menu.style.display = "block";
			arrowImg.src = "images/bizarrow.gif"
		}    
          //arrowImg = eval("document.images['i" + n.substring(0, i) + "']")
          
    }
	function windowOpener(url,width,height,target,isfullscreen,top,left) 
      {
       browserName = navigator.appName;
       browserVer = navigator.appVersion.substring(0,1);
       if (width==null) {width=600;}
       if (height==null) {height=400;}
       if (top==null) {top=40;}
       if (left==null) {left=50;}
       if (browserName != "Netscape" || browserVer != 2)
       {
controlWindow=window.open(url,target,"toolbar=no,height="+height+",width="+width+",top="+top+",left="+left+",location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,fullscreen="+isfullscreen);
       }
      }

