//Displays a specified name in the bottom bar instead of file names
function MM_displayStatusMsg(msgStr) 
{ //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}
function check_form()
{
	if (document.Goto.strKeyword.value == "" || document.Goto.strKeyword.value == " Enter GoTo Keyword" || document.Goto.strKeyword.value == " Enter Keyword")
	{
	  	alert("Please enter a GoTo keyword");
	  	return false;
	}

	  return true;
}

function clear_form()
{
	if (document.Goto.strKeyword.value == " Enter GoTo Keyword" || document.Goto.strKeyword.value == " Enter Keyword")
	{
	  	document.Goto.strKeyword.value = "";
	}
}

