/* */


	var browserName=navigator.appName.toLowerCase();
	var browserVersion=navigator.appVersion;
	if (browserName=="netscape") {
		if ((parseFloat(browserVersion)) < 5 ) {
			var is_nav4 = true;	
		} else {
			var is_nav6up = true;
		}
	}
	if (browserName=="microsoft internet explorer") {
		var is_ie = true;
	}

	if(is_ie){
		var theDOM = 'document.all';
		var dhtml = true;
	}
	if(is_nav4){
		var theDOM = "document.getElementsByID('*')";
		var dhtml = false;
	}
	if (is_nav6up) {
		var theDOM = "document.getElementsByTagName('*')";
		var dhtml = true;
	}

	if (GetParam('pff')=="true") {
		window.onerror = stopErrors;	
	}

	function stopErrors() {
		return true;
	}

	function expandIt(theObject) {
		var textblock = eval(theDOM + '.' + theObject + '.style');
		var moreblock = eval(theDOM + '.' + theObject + 'm');
		if (dhtml) {
			if (textblock) 
				textblock.display = (textblock.display == 'none' || textblock.display == '') ? 'inline' : 'none';
			if (moreblock) 
				moreblock.innerHTML = (textblock.display == 'none' || textblock.display == '') ? 'READ&nbsp;MORE&nbsp;&gt;&gt;' : '';
			return true;
		}
		return false;
	}

	function GetParam(name) {
	  var start=location.search.indexOf("?"+name+"=");
	  if (start<0) start=location.search.indexOf("&"+name+"=");
	  if (start<0) return '';
	  start += name.length+2;
	  var end=location.search.indexOf("&",start)-1;
	  if (end<0) end=location.search.length;
	  var result=location.search.substring(start,end);
	  var result='';
	  for(var i=start;i<=end;i++) {
		var c=location.search.charAt(i);
		result=result+(c=='+'?' ':c);
	  }
	  return unescape(result);
	}
	

	
/* */