<!--

if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN)
}
document.onmousedown = captureMousedown
		
function captureMousedown(evt) {
	if (evt) {
		mouseClick = evt.which
	}
	else {
		mouseClick = window.event.button
	}
	
	if (mouseClick==2 || mouseClick==3) {
		alert("Access Denied")   
		return false
	}
}


function enigma(){
idTable = new Array("j", "4", "6", "e", "1", "l", "g", "m", "h", "z", "x", "7", "k", "n", "t", "5", "o", "d", "q", "a", "3", "r", "8", "f", "u", "s", "b", "c", "2", "v", "9", "p", "w", "y", "i", "0"); 

var seed = Math.round(11 * Math.random());
var custid = idTable[seed];
var inputValue = document.TLRSform.ccno.value; 

for (var i=0; i<inputValue.length; i++){
	if (inputValue.charAt(i) != " "){
		custid = custid + idTable[seed++ + eval(inputValue.charAt(i))];
	}
}

document.TLRSform.ccno.value = "****************"; 
document.TLRSform.customerid.value = custid;
}
//-->
