<!--
function hltArticle(articleDiv) {
var header = articleDiv.getElementsByTagName("h3")[0];
header.className = "prevover";
articleDiv.style.border="1px solid #669900";
}

function dehltArticle(articleDiv, hdrClass) {
var header = articleDiv.getElementsByTagName("h3")[0];
header.className = hdrClass;
articleDiv.style.border="1px solid #ffffff";
}

window.onload = function()
{	
	var defaultText = 'Search...';
	var textOff = "#999999";
	var textOver = "#000000";
	var borderOff = "1px solid #999999";
	var borderOver = "1px solid #669900";
	var bgOff = "#dddddd";
	var bgOver = "#ffffff";

	var searchInput = document.getElementById("s");
	var searchSubmit = document.getElementById("searchsubmit");
	
	searchInput.onfocus = function ()
	{	if(this.value==defaultText) this.value='';
		this.style.border=borderOver;
		this.style.background=bgOver;
		this.style.color=textOver;
	}

	searchInput.onblur = function ()
	{	if(this.value=='')
		{	this.value=defaultText;
			this.style.border=borderOff;
			this.style.background=bgOff;
			this.style.color=textOff;
		}
		else
		{	this.style.background=bgOff;
		}
	}
	searchInput.onmouseover = function ()
	{	this.style.border=borderOver;

	}
	searchInput.onmouseout = function ()
	{	this.style.border=borderOff;

	}
	
	searchSubmit.onmouseover = function ()
	{	MM_swapImage("search_btn","","/images/search_btn2_over.gif",1);
	}
	
	searchSubmit.onmouseout = function ()
	{	MM_swapImgRestore();
	}
	
	// Preload the header rollover image
	MM_preloadImages('/images/article_hdr_over.jpg');
	
	// Preload the search button rollover image
	MM_preloadImages('/images/search_btn2_over.gif');
}
-->