// <!-- Original: John A. Conrad, J.A. Conrad Consulting -->//   <!-- Begin// Set up the image files to be used.var theImages = new Array();var txtEnc = "";// To add more image files, continue with the// pattern below, adding to the array.	theImages[0]="images/sec/scr1.jpg,A36gYeB"	theImages[1]="images/sec/scr2.jpg,Sa2Ek94"	theImages[2]="images/sec/scr3.jpg,k6yGeg5"	theImages[3]="images/sec/scr4.jpg,E9Ks4ay"	theImages[4]="images/sec/scr5.jpg,8K62Bak"	theImages[5]="images/sec/scr6.jpg,25GsEa9"	theImages[6]="images/sec/scr7.jpg,B4gkE8A"   var p = theImages.length;   var whichImage = Math.round(Math.random()*(p-1));var realImage = theImages[whichImage].split(",");var imgSrc=realImage[0];var imgEnc=realImage[1];var apost="'";var sp="&nbsp;";function showImg(){	document.write('<CENTER><IMG SRC="'+imgSrc+'" BORDER="0" WIDTH="175" HEIGHT="70">');	document.write('<P><SPAN CLASS="bodyText">Type the characters in the order as you see them above.<BR>They are case sensitive.</SPAN><P>');	document.write('<FORM name="auth">');	document.write('<INPUT TYPE="text" NAME="chars" SIZE=7 MAXLENGTH=7 VALUE=""><P>');	document.write('<INPUT TYPE="button" CLASS="ctrl" VALUE="Proceed" onMouseOver="style.color='+apost+'darkred'+apost+'" onMouseOut="style.color='+apost+'darkblue'+apost+'" onclick="authenticate(document.auth.chars.value)">'+sp+sp+sp+sp+'<INPUT TYPE="button" CLASS="ctrl" VALUE="Cancel" onMouseOver="style.color='+apost+'darkred'+apost+'" onMouseOut="style.color='+apost+'darkblue'+apost+'" onclick="window.location='+apost+'canada.htm'+apost+'"></FORM></CENTER>');	document.write('<P>'+sp+'<DIV align="center"><SPAN CLASS="bodyText">If the characters are incorrect, this page will refresh automatically.<BR>You may also click the "Cancel" button to return.</DIV>');	txtEnc=imgEnc;	}function authenticate(theChars){	if (theChars==imgEnc){        	window.location="a_canform.htm";		} else {		history.go();//        	window.location="canada.htm";		}	}// End -->