function goTo()
        {
        box = document.quicklink.ql;
        url = box.options[box.selectedIndex].value;
        if (url)
                {
                window.location.href = url;
                }
        }


var newWin;

function viewWin(url)
	{
	
	newWin = window.open(url,"popwin","height=480,width=640,scrollbars=yes");

	}

function RegFormValidator(form)
{


  if (form.Response.value == "")
  {
    alert("Please enter your response.");
    form.Message.focus();
    return (false);
  }
   
  
  return (true);
  }