<!-- HIDE FROM OTHER BROWSERS
//This script prevents duplicate submissions
//within 15 seconds intervals.

                numberoftimes = 0;
		thetimer1 = 0;
		thetimer2 = 0;
		
	function incrementit() {        
        	thetimer1 += 1;
        	thespacer = "";
	        if (thetimer1 > 59) {
        	        thetimer2 += 1;
                	thetimer1 = 0;
        	}
	        if (thetimer1 < 10) {thespacer = "0";}
	        document.theform.timer.value = thetimer2 + ":" + thespacer + thetimer1;
        	  if (thetimer1 < 15) { setTimeout('incrementit()',1000); }
	}
                   function onlyonce(form) {
                   numberoftimes += 1;
                   if (numberoftimes > 1 && thetimer1 < 15 ) { 
                           var themessage = "Please be patient. You have already submitted this form. You will receive a response momentarily. Please note: For repeated searches, your search results will be displayed in your initial search results window.";
                           if (numberoftimes == 3) {
                                   themessage = "Processing may take up to 15 seconds. Please wait until the timer reaches 15 seconds before searching again. Thank you.";
                           }
                            alert(themessage);
                            return false; 
                   } 
                   else
                   {
		thetimer1 = 0;
		thetimer2 = 0;
        setTimeout('incrementit()',1000);
_target = form.target;
_colon = _target.indexOf(":");
if(_colon != -1) {
form.target = _target.substring(0,_colon);
form.args = _target.substring(_colon+1);
} else if(typeof(form.args)=="undefined") {
form.args = "";
}
if(form.args.indexOf("{")!=-1) {
_args = form.args.split("{");
form.args = _args[0];
for(var i = 1; i < _args.length;i++) {
_args[i] = _args[i].split("}");
form.args += eval(_args[i][0]) + _args[i][1];
   }
}
form.args = form.args.replace(/ /g,"");
_win = window.open('',form.target,form.args);
if(typeof(focus)=="function")
_win.focus();
                            return true;
                   }
                   }
// STOP HIDING FROM OTHER BROWSERS -->
