function ValidateGSAForm(GSAform)
{
   if(GSAform.q.value == "Enter keywords") 
   { 
      GSAform.q.value = ""
      return true;
   } 
 
return true;
 
} ;


function clear_textbox(txtBox)
	{
		if (txtBox.value == "Enter keywords")
		   txtBox.value = "";
		return true;
	};

function set_textbox(txtBox)
	{
		if (txtBox.value == "")
		   txtBox.value = "Enter keywords";
		return true;
	};
