function formTextBoxOnFocus(objTextBox)
{
	objTextBox.style.backgroundColor = "#595959";
}

function formTextBoxOffFocus(objTextBox)
{
	objTextBox.style.backgroundColor = "";
}

function tableCellOnFocus(objCell)
{
	objCell.style.backgroundColor = "#202020";
	objCell.style.border = "1px solid #505050";
}

function tableCellOffFocus(objCell)
{
	objCell.style.backgroundColor = "";
	objCell.style.border = "1px solid #000000";
}

function frmGoogleSearchCheck()
{
	if (document.frmGoogleSearch.q.value == "")
	{
		alert("Please enter search term, then click 'Search' button.");
		document.frmGoogleSearch.q.focus();
		return false;
	}
	else
		return true;
}

