if(document.getElementById){	document.writeln('<style type="text/css" media="all">');	document.writeln('<!--');	document.writeln('.sidehide{display:none;}');	document.writeln('-->');	document.writeln('</style>');}function showHide(id){	var disp = document.getElementById(id).style.display;	if(disp == "block"){		document.getElementById(id).style.display = "none";	}else{		document.getElementById(id).style.display = "block";	}	return false;}function showHide2(id){	var disp = document.getElementById(id).style.display;	if(disp == "none"){		document.getElementById(id).style.display = "block";	}else{		document.getElementById(id).style.display = "none";	}	return false;}var scrj = 1;function softScrollBack() {   if(navigator.appName == "Microsoft Internet Explorer" && document.compatMode == "CSS1Compat") {      var scdist = document.body.parentNode.scrollTop;   } else {      var scdist = document.body.scrollTop;   }   if(scrj<50 && scdist) {      scdist = (scdist>2) ? Math.ceil(scdist*.2) : 1;      scrj++;      scrollBy(0,-scdist);      setTimeout("softScrollBack()",20);   } else {      scrollTo(0,0);      scrj = 1;   }}