﻿// JScript File

var haveSubmitted=false;
	function FirstSubmitOnly()
	{
		if(haveSubmitted) return false;
		haveSubmitted=true;
		return true;    //we want the first click to occur.
	}
