function regInstructions(termsWin)
{
  		 /* A new window will open resized to a more current
		  * browser with everything stripped or turned off
		  */
		  
		  if(!termsWin || termsWin.close)
		  {
		   	  termsWin = window.open("terms.htm", "termsWin", "location=0,menubar=0,status=0,resizable=1,scrollbars=1,titlebar=1,height=300,width=200");
		  }
		  else
		  {
		   	  //Bring focus to window
			  termsWin.focus();
		  }
}