function doResize() {	var fixedDesignHeight=150;	if (document.getElementById) {		var theContent = document.getElementById('Content');		if (document.body.clientHeight > fixedDesignHeight) {			theContent.style.height = (document.body.clientHeight - fixedDesignHeight) + 'px';		}		else			theContent.style.height = 1;	}	else {		if (document.body.clientHeight > fixedDesignHeight) {			Content.style.height = (document.body.clientHeight - fixedDesignHeight) + 'px';		}		else			Content.style.height = 1;	}}var agt = navigator.userAgent.toLowerCase();function isGecko() {	return (agt.indexOf('gecko') != -1);}function isMSIE() {	return (agt.indexOf('msie') != -1);}function scrollToTop() {	if(isMSIE()) {		Content.scrollTop=0;		return false;	}	else {		if(isGecko()) {//			var theContent = document.getElementById('Content');//			theContent.scrollTop=0;			return false;		}		else return true;	}}function doSearch() {	return document.MicroSearch.Query.value.length != 0;}