function cursorOut()
{

	document.body.style.cursor = "default";

} // End function cursorOver

function cursorOver()
{

	document.body.style.cursor = "pointer";

} // End function cursorOver

function doSearch()
{

	if(document.getElementById('txtSearch').value !== "" && document.getElementById('txtSearch').value !== "Search Documents")
	{
		
		document.getElementById('frmSearch').submit();
		
	} // End if

} // End function doSearch

function onSearchBlur()
{

	if(document.getElementById('txtSearch').value == "")
	{
		
		document.getElementById('txtSearch').value = "Search Documents";

	} // End if

} // End function onSearchFocus

function onSearchFocus()
{

	if(document.getElementById('txtSearch').value == "Search Documents")
	{
		
		document.getElementById('txtSearch').value = "";

	} // End if

} // End function onSearchFocus
