<!--
// Mouseover for sub-navigation
if (document.images) {
	<!-- main menu -->
	home_on = new Image();
	home_on.src = "images/btn_home_on.gif";
	home_off = new Image();
	home_off.src = "images/btn_home_off.gif";
	
	firm_on = new Image();
	firm_on.src = "images/btn_firm_on.gif";
	firm_off = new Image();
	firm_off.src = "images/btn_firm_off.gif";
	
	products_on = new Image();
	products_on.src = "images/btn_products_on.gif";
	products_off = new Image();
	products_off.src = "images/btn_products_off.gif";
	
	news_on = new Image();
	news_on.src = "images/btn_news_on.gif";
	news_off = new Image();
	news_off.src = "images/btn_news_off.gif";
	
	contact_on = new Image();
	contact_on.src = "images/btn_contact_on.gif";
	contact_off = new Image();
	contact_off.src = "images/btn_contact_off.gif";
	
	<!-- side menu -->
	sidenews_on = new Image();
	sidenews_on.src = "images/btn_news_large_on.png";
	sidenews_off = new Image();
	sidenews_off.src = "images/btn_news_large_off.png";
	
	sideprofile_on = new Image();
	sideprofile_on.src = "images/btn_profile_large_on.png";
	sideprofile_off = new Image();
	sideprofile_off.src = "images/btn_profile_large_off.png";

}

function changeImages() {
  if (document.images) {
    for (var i=0; i<changeImages.arguments.length; i+=2) {
      document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
    }
  } // end of document.images if
} // end of mouseover sub-navigation


var sUserAgent = navigator.userAgent.toLowerCase();
var isIE = document.all?true:false;
var isNS4 = document.layers?true:false;
var isOp = (sUserAgent.indexOf('opera')!=-1)?true:false;

var isMoz = (sUserAgent.indexOf('mozilla/5')!=-1 && sUserAgent.indexOf('opera')==-1 && sUserAgent.indexOf('msie')==-1)?true:false;

function pop(oAnchor,sWindow,sProps){
        var sUrl = '';
        if(oAnchor.getAttribute) sUrl = oAnchor.getAttribute('href');
        if(sUrl=='' && isIE) sUrl = window.event.srcElement.getAttribute('href');
        if(sUrl=='') sUrl = oAnchor.href;
        var sWindowName = sWindow?sWindow:'_blank';
        if(!sProps) sProps = 'width=640,height=480,scrollbars,resizable,toolbar,status,menubar,location';
        if(sUrl) var oPopup = window.open(sUrl,sWindowName,sProps);
        // An Opera bug returns too early if you focus the window, so we don't focus it inthat browser.
        // Only a noticable defect (in that browser) if a window is already open and hidden behind another window.
        if(oPopup && !isOp) oPopup.focus();
        // If popup was created successfully, cancel link in calling window.
        // Acts as regular link in browser that has popup blocking enabled.
        return (oPopup)?false:true;
}

function addToFavorites(urlAddress,pageName) { 
	var urlAddress = urlAddress; 
	var pageName = pageName;
	if (window.external) { 
		window.external.AddFavorite(urlAddress,pageName) 
	} else { 
		alert("Sorry! Your browser doesn't support this function."); 
	} 
}

-->