
<!-- hide script from old browsers

	browser_name = navigator.appName;
	browser_version = parseFloat(navigator.appVersion); 
	
	var roll = false
  
  var is_ie = false
  var is_nav = false
  var PrintWindow
  

 
  if ( browser_name == "Netscape" )
  {
    is_nav = true
	  if ( browser_version >= 3.0 )
	  {
		  roll = true
	  }
  }


  if ( browser_name == "Microsoft Internet Explorer" )
  {
    is_ie = true
    if ( browser_version >= 3.0 )
		  roll = true
  }
	
	//' roll-over image pair object
	//'-----------------------------------
	function ImageObj( name_on, name_off )
	{
		this.on = new Image()
		this.on.src = name_on
		this.off = new Image()
		this.off.src = name_off
	}
	
	//' Load image array and image path variables
	if ( roll == true ) 
	{
		//var files = new Array()
		var images = new Array()
		//var gpath = "/nav/<%=lang%>/"
		
		//images[0] = new ImageObj( gpath+"g-products-on-"+lang+".gif", gpath+"g-products-off-"+lang+".gif" )
		//images[1] = new ImageObj( gpath+"g-support-on-"+lang+".gif", gpath+"g-support-off-"+lang+".gif" )
		//images[2] = new ImageObj( gpath+"g-inside-on-"+lang+".gif", gpath+"g-inside-off-"+lang+".gif" )
		//images[3] = new ImageObj( gpath+"g-contact-on-"+lang+".gif", gpath+"g-contact-off-"+lang+".gif" )
		//images[4] = new ImageObj( gpath+"s-prod-main-on-"+lang+".gif", gpath+"s-prod-main-off-"+lang+".gif" )
		//images[5] = new ImageObj( gpath+"s-prod-56k-on-"+lang+".gif", gpath+"s-prod-56k-off-"+lang+".gif")
		//images[6] = new ImageObj( gpath+"s-prod-isdn-on-"+lang+".gif", gpath+"s-prod-isdn-off-"+lang+".gif")
		//images[7] = new ImageObj( gpath+"s-prod-broadband-on-"+lang+".gif", gpath+"s-prod-broadband-off-"+lang+".gif")
		//images[8] = new ImageObj( gpath+"s-prod-networking-on-"+lang+".gif", sprodpath+"s-prod-networking-off-"+lang+".gif")
		//images[9] = new ImageObj( gpath+"s-prod-devices-on-"+lang+".gif", sprodpath+"s-prod-devices-off-"+lang+".gif")
		//images[10] = new ImageObj( gpath+"s-prod-dealer-on-"+lang+".gif", sprodpath+"s-prod-dealer-off-"+lang+".gif")
		//images[11] = new ImageObj( gpath+"s-support-mainmenu-on-"+lang+".gif", gpath+"s-support-mainmenu-off-"+lang+".gif" )
		//images[12] = new ImageObj( gpath+"s-support-prodreg-on-"+lang+".gif", gpath+"s-support-prodreg-off-"+lang+".gif" )
		//images[13] = new ImageObj( gpath+"s-support-knowledge-on-"+lang+".gif", gpath+"s-support-knowledge-off-"+lang+".gif" )
		//images[14] = new ImageObj( gpath+"s-support-search-on-"+lang+".gif", gpath+"s-support-search-off-"+lang+".gif" )
		//images[15] = new ImageObj( gpath+"s-support-contact-on-"+lang+".gif", gpath+"s-support-contact-off-"+lang+".gif" )
		//images[16] = new ImageObj( gpath+"s-in-main-on-"+lang+".gif", gpath+"s-in-main-off-"+lang+".gif" )
		//images[17] = new ImageObj( gpath+"s-in-pressbox-on-"+lang+".gif", gpath+"s-in-pressbox-off-"+lang+".gif" )
		//images[18] = new ImageObj( gpath+"s-in-background-on-"+lang+".gif", gpath+"s-in-background-off-"+lang+".gif" )
		//images[19] = new ImageObj( gpath+"s-in-careers-on-"+lang+".gif", gpath+"s-in-careers-off-"+lang+".gif" )
		//images[20] = new ImageObj( gpath+"s-ab-main-on-"+lang+".gif", gpath+"s-ab-main-off-"+lang+".gif" )
		//images[21] = new ImageObj( gpath+"s-ab-download-on-"+lang+".gif", gpath+"s-ab-download-off-"+lang+".gif" )
		//images[22] = new ImageObj( gpath+"s-ab-tips-on-"+lang+".gif", gpath+"s-ab-tips-off-"+lang+".gif" )
		//images[23] = new ImageObj( gpath+"g-chan-welcome-on-"+lang+".gif", gpath+"g-chan-welcome-off-"+lang+".gif" )
		//images[24] = new ImageObj( gpath+"g-chan-promo-on-"+lang+".gif", gpath+"g-chan-promo-off-"+lang+".gif" )
		//images[25] = new ImageObj( gpath+"g-chan-sales-on-"+lang+".gif", gpath+"g-chan-sales-off-"+lang+".gif" )
	}
	
	//'------------------------------------
	//' Display roll-on image
	//'------------------------------------
	function RollOn( img_name )  
	{ 
			document[ img_name ].src = images[ img_name ].on.src
	}

	//'------------------------------------
	//' Display roll-off image
	//'------------------------------------	
	function RollOff( img_name )  
	{
			document[ img_name ].src = images[ img_name ].off.src
	}
	
	//'------------------------------------
	//' Create an Element in the images Array
	//'------------------------------------
	function CreateArray( image_on, image_off, img_name )
	{
			images[img_name] = new ImageObj( image_on, image_off )
	}

//============================================================================================
function popUpWin(url, newTool, newLocation, newStatus, newMenubar, newResizable, newScrollbars, newWidth, newHeight, newLeft, newTop) 
	{
		if (is_ie || is_nav) 
		{
			if (PrintWindow != null && !PrintWindow.closed) 
			{
                        oldWin = PrintWindow;
                        oldWin.name = "oldWin";
                        oldWin.close();
            }
		}
		PrintWindow=window.open(url,"newWin","toolbar=" + newTool + ",location=" + newLocation + ",status=" + newStatus + ",menubar=" + newMenubar + ",resizable=" + newResizable + ",scrollbars=" + newScrollbars + ",width=" + newWidth + ",height=" + newHeight + ",left=" + newLeft + ",top=" + newTop);
		if (PrintWindow.opener == null)
		{
        	PrintWindow.opener = popupWin;
        }
		PrintWindow.opener.name = "origWin";
        PrintWindow.focus();
	}
function closeWin()
	{
		this.close();
		PrintWindow = null;
	}

//==============================================================
//
//Script used for autoselect dropdown navigation
//
//==============================================================

function SelectThisBottom() {
		if (document.bottom.menu_sitemap.options[document.bottom.menu_sitemap.selectedIndex].value != "none"){ 
		location = document.bottom.menu_sitemap.options[document.bottom.menu_sitemap.selectedIndex].value}
}	


function SelectThisCountry() {
       if (document.international.intl_sites.options[document.international.intl_sites.selectedIndex].value != "none"){ 
		location = document.international.intl_sites.options[document.international.intl_sites.selectedIndex].value}  
}

function SelectThisv92() {
       if (document.modem.menu_v92.options[document.modem.menu_v92.selectedIndex].value != "none"){ 
		location = document.modem.menu_v92.options[document.modem.menu_v92.selectedIndex].value}  
}				

function SelectThisv92a() {
       if (document.modem.menu_v92a.options[document.modem.menu_v92a.selectedIndex].value != "none"){ 
		location = document.modem.menu_v92a.options[document.modem.menu_v92a.selectedIndex].value}  
}

function SelectThisxp() {
       if (document.modem.menu_xp.options[document.modem.menu_xp.selectedIndex].value != "none"){ 
		location = document.modem.menu_xp.options[document.modem.menu_xp.selectedIndex].value}  
}	

function SelectThisWireless() {
       if (document.wireless.emeawireless.options[document.wireless.emeawireless.selectedIndex].value != "none"){ 
		location = document.wireless.emeawireless.options[document.wireless.emeawireless.selectedIndex].value}  
}

function SelectThisWirelessAnt() {
       if (document.wirelessant.emeawirelessant.options[document.wirelessant.emeawirelessant.selectedIndex].value != "none"){ 
		location = document.wirelessant.emeawirelessant.options[document.wirelessant.emeawirelessant.selectedIndex].value}  
}

function SelectThisWired() {
       if (document.wired.emeawired.options[document.wired.emeawired.selectedIndex].value != "none"){ 
		location = document.wired.emeawired.options[document.wired.emeawired.selectedIndex].value}  
}

function SelectThisWired() {
       if (document.wired.emeawired.options[document.wired.emeawired.selectedIndex].value != "none"){ 
		location = document.wired.emeawired.options[document.wired.emeawired.selectedIndex].value}  
}

function SelectThisWired() {
       if (document.wired.emeawired.options[document.wired.emeawired.selectedIndex].value != "none"){ 
		location = document.wired.emeawired.options[document.wired.emeawired.selectedIndex].value}  
}

function SelectThisWired() {
       if (document.wired.emeawired.options[document.wired.emeawired.selectedIndex].value != "none"){ 
		location = document.wired.emeawired.options[document.wired.emeawired.selectedIndex].value}  
}

function SelectThisWired() {
       if (document.wired.emeawired.options[document.wired.emeawired.selectedIndex].value != "none"){ 
		location = document.wired.emeawired.options[document.wired.emeawired.selectedIndex].value}  
}

function SelectThisExtmodem() {
       if (document.extmodem.emeaextmodem.options[document.extmodem.emeaextmodem.selectedIndex].value != "none"){ 
		location = document.extmodem.emeaextmodem.options[document.extmodem.emeaextmodem.selectedIndex].value}  
}

function SelectThisIntmodem() {
       if (document.intmodem.emeaintmodem.options[document.intmodem.emeaintmodem.selectedIndex].value != "none"){ 
		location = document.intmodem.emeaintmodem.options[document.intmodem.emeaintmodem.selectedIndex].value}  
}

function SelectThisISDN() {
       if (document.isdn.emeaisdn.options[document.isdn.emeaisdn.selectedIndex].value != "none"){ 
		location = document.isdn.emeaisdn.options[document.isdn.emeaisdn.selectedIndex].value}  
}

function SelectThisACC() {
       if (document.acc.emeaacc.options[document.acc.emeaacc.selectedIndex].value != "none"){ 
		location = document.acc.emeaacc.options[document.acc.emeaacc.selectedIndex].value}  
}

function SelectThisBroadband() {
       if (document.broadband.emeabroadband.options[document.broadband.emeabroadband.selectedIndex].value != "none"){ 
		location = document.broadband.emeabroadband.options[document.broadband.emeabroadband.selectedIndex].value}  
}

function SelectThisVoip() {
       if (document.voip.emeavoip.options[document.voip.emeavoip.selectedIndex].value != "none"){ 
		location = document.voip.emeavoip.options[document.voip.emeavoip.selectedIndex].value}  
}

function preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.p) d.p=new Array();
    var i,j=d.p.length,a=preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.p[j]=new Image; d.p[j++].src=a[i];}}
}

function swapImgRestore() { //v3.0
  var i,x,a=document.sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function findObj(n, d) { //v3.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=findObj(n,d.layers[i].document); return x;
}

function swapImage() { //v3.0
  var i,j=0,x,a=swapImage.arguments; document.sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=findObj(a[i]))!=null){document.sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function surfto(form) {
   var myindex=form.select1.selectedIndex;
   if (form.select1.options[myindex].value != 0) {
		location=form.select1.options[myindex].value;
   }
}

//-->
