/* =========================================================================

JavaScript Source File

NAME: Negative Captcha Script

AUTHOR: Dor Karter , Vista System
DATE  : 5/21/2007

COMMENT: Use this with any form that requires protection. 
Embed this script with the following code:
<script src="http://www.vistasystem.com/Captcha.js" type="text/javascript"></script>
The calling for this script should be done from the body of the HTML.
Example: 
<body onload="NegCaptcha('Comments');"> and replace Comments with the ID of the control you wish to 
perform this on.
This is a recommended control and you should change the original comments control id and name to notes on the form
<textarea name="Comments" type="text" id="Comments">
after that change the ASP code to prevent submitting of the form if this field is full.

============================================================================ */

function NegCaptcha(fieldID){
	document.getElementById(fieldID).style.visibility='hidden';
}
