<!--

function swapImgRestore() { //v2.0
  if (document.swapImgData != null)
    for (var i=0; i<(document.swapImgData.length-1); i+=2)
      document.swapImgData[i].src = document.swapImgData[i+1];
}

function swapImage() { //v2.0
  var i,j=0,objStr,obj,swapArray=new Array,oldArray=document.swapImgData;
  for (i=0; i < (swapImage.arguments.length-2); i+=3) {
    objStr = swapImage.arguments[(navigator.appName == 'Netscape')?i:i+1];
    if ((objStr.indexOf('document.layers[')==0 && document.layers==null) ||
        (objStr.indexOf('document.all[')   ==0 && document.all   ==null))
      objStr = 'document'+objStr.substring(objStr.lastIndexOf('.'),objStr.length);
    obj = eval(objStr);
    if (obj != null) {
      swapArray[j++] = obj;
      swapArray[j++] = (oldArray==null || oldArray[j-1]!=obj)?obj.src:oldArray[j];
      obj.src = swapImage.arguments[i+2];
  } }
  document.swapImgData = swapArray; //used for restore
}

function displayStatusMsg(msgStr) { //v2.0
  status=msgStr;
  document.returnValue = true;
}
//-->

<!--
/*
This code is from Dynamic Web Coding www.dyn-web.com
*/

dom = (document.getElementById) ? true : false;
ns5 = ((navigator.userAgent.indexOf("Gecko")>-1) && dom) ? true: false;
ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false;
ns4 = (document.layers && !dom) ? true : false;
ie4 = (document.all && !dom) ? true : false;
nodyn = (!ns5 && !ns4 && !ie4 && !ie5) ? true : false;

//if (ns4) window.onload = doNS4;

var win, cnt;
function doNS4() {
	if (ns4) {
//	win = document.outer;
//	cnt = document.outer.document.inner;
//	cnt.src = "news_company.html"
	}
}

function loadLyr(pg) {
	if (ns4) {
		cnt.src = pg;
  } 
  else if (ie4) {
      document.all.ifrm.src = pg;
  }
  else if (ie5 || ns5) {
      document.getElementById('ifrm').src = pg;
  }
}



function openWindow(URL,name) {

	popupWin = window.open(URL, name, 'resizable=yes,scrollbars=yes,width=300,height=300');
	
	// focus window (only for Navigator >= 3.0)
	if ( (navigator.appName != "Microsoft Internet Explorer") && (navigator.appVersion.substring(0,1) == "3") )
	popupWin.focus();
	
}	

//-->

