function GoRed(elem)
	{
	if(elem.style)
		{
		elem.style.color="red";
		elem.style.fontWeight="bold";
		elem.style.textDecoration="none";
		}
	}
function GoBlue(elem)
	{
	if(elem.style)
		{
		elem.style.color="blue";
		elem.style.fontWeight="bold";
		elem.style.textDecoration="none";
		}
	}

function SurveyFormWin()
	{
	var rebecca=window.open('survey.htm','reb','resizable,scrollbars,width=800,height=600');
	self.history.go(0);
	return true;
	}

function RequestFormWin()
	{
	var rebecca=window.open('request.htm','reb','resizable,scrollbars,width=750,height=570');
	self.history.go(0);
	return true;
	}

function showStatus(msg) 
{
	window.status = msg;
	return true;
}
function DoNothing()
{
	return true;
}
