<!--
function encodeString(strPlain,lngEncodeNumber){
var strCipher = '';
	for (var i=0; i<strPlain.length; i++) { 
		strCipher = strCipher + (strPlain.charCodeAt(i)* parseFloat(lngEncodeNumber)) + "|";
	}
	return (strCipher);
}
function submitForm(){
	document.info.passwordHidden.value = encodeString(document.box.passwordBox.value,document.keyForm.key.value);
	document.info.username.value = document.box.username.value;
	document.info.submit();

}
//-->
