synopened=false;
//Rollovers
bname = navigator.appName;
bvers = parseInt(navigator.appVersion);
if (bname == "Netscape" && bvers >=3) {
   version = "n3";
}
else if (bname == "Microsoft Internet Explorer" && bvers >=3) {
   version = "n3";
}
else {
   version ="n2";
}

if (version == "n3") {

// submenu
   arrow_on      = new Image;
   arrow_on.src  = "images/arrow.gif";

   arrow_off     = new Image;
   arrow_off.src = "images/arrow_blank.gif";

// bar

   bar_on      = new Image;
   bar_on.src  = "images/client_bar2.gif";

   bar_off     = new Image;
   bar_off.src = "images/client_bar.gif";

}

// submenu

function sub_active (iname) {
  if (version == "n3") {
     document[iname].src = arrow_on.src;
  }
}

function sub_inactive (iname) {
  if (version == "n3") {
     document[iname].src = arrow_off.src;
  }
}

// bar

function sub_clientactive (iname) {
  if (version == "n3") {
     document[iname].src = bar_on.src;
  }
}

function sub_clientinactive (iname) {
  if (version == "n3") {
     document[iname].src = bar_off.src;
  }
}

		function openWindow(Desc_URL){
		  clientlogin = window.open(Desc_URL, "clientlogin", 
		    "toolbar=1,location=0,directories=0,menubar=0,scrollbars=1,resizable=1,width=800,height=600");
 		 clientlogin.focus();
		}
