<!-- Begin
var theImages = new Array()

theImages[0] = 'http://monitor.dclisp.com/images/adsl.gif'
theImages[1] = 'http://monitor.dclisp.com/images/easicall.gif'
theImages[2] = 'http://monitor.dclisp.com/images/myeldo.gif'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function BannerRotator(){
document.write('<img src="'+theImages[whichImage]+'">');
}

function openwin(Page,Title,w,h){	
	LPos = (screen.width - w)/2;
	TPos = (screen.height - h)/2;
	
	window.open(Page,Title,"height="+h+",width="+w+",scrollbars=yes,resizable=no,maximize=no,left="+LPos+", top="+TPos);	
}

function validentry()
  {
	var radio_selection="";
	var validtxt="abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
	var answ = "yes";
	var chk
  	formObj = document.refil;
        
	for (var i=0; i<formObj.CardPIN.value.length; i++)
		{
		chk = "" + formObj.CardPIN.value.substring(i, i+1);
		if (validtxt.indexOf(chk) == "-1") answ = "no";
		}
			if (answ == "no")
			{
			alert("Invalid !!!");
			formObj.CardPIN.focus();
			formObj.CardPIN.select();
			return false;
			}
			for (var i=0; i<formObj.CardPW.value.length; i++)
				{
				chk = "" + formObj.CardPW.value.substring(i, i+1);
				if (validtxt.indexOf(chk) == "-1") answ = "no";
				}
					if (answ == "no")
					{
					alert("Invalid !!!");
					formObj.CardPW.focus();
					formObj.CardPW.select();
					return false;
   					}     		
	   formObj.cmdSubmit.value = "Processing ....";                      					     
  }  
//  End -->


