<!--
function MM_openBrWindow(theURL,winName,features) { //v1.2
  newWindow = window.open(theURL,winName,features);
  newWindow.focus();
}

function DoThePageChange(sValue) { //v2.0
   if (sValue != '0') {
	if (sValue.indexOf('http://') != -1) {
	   window.open(sValue)
	}else {
	   location.href=sValue + '.htm';
   	}
   }
}
//-->
