//JavaScript function to encrypt password
//created on 07-06-2006
function Encrypt(theText) {
output = new String;
Temp = new Array();
Temp2 = new Array();
TextSize = theText.length;
for (i = 0; i < TextSize; i++) {
Temp[i] = ((theText.charCodeAt(i) - 4)/2);
output += Temp[i] + "¶";
}
document.forms[0].hidvalue.value=output;
return;
}
