
 





<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=100" >
<meta http-equiv="X-UA-Compatible" content="IE=7,IE=8,IE=9" />
<title>Forgot Password 14 Apr 2026 16:15</title>
<!-- <link rel="stylesheet" href="../theme/fo/def/css/login.css" type="text/css" media="screen" /> -->
<link rel="stylesheet" type="text/css" href="../theme/general/css/default.css">
<style>
.hidden {
	visibility:hidden;
}
</style>
</head>
<script src="../js/updatedJS/jquery-3.7.1.min.js" type="text/javascript"></script>

<script>
function Trim(string) {                  
 var i;                          
 var intCount;                       
 intCount = 0;                       
 for (i = 0; i < string.length; i++)             
 {
     if ((string.charAt(i)) != " ")        
     {
         break;                  
     }
     else                        
     {
         intCount = intCount + 1;        
     }
 }
 string = string.substring(intCount, string.length); 
 intCount = 0;                       
 for (i = string.length-1; i >= 0; i--)          
 {
     if ((string.charAt(i)) != " ")        
     {
         break;                  
     }
     else                        
     {
         intCount = intCount + 1;        
     }
 }
 string = string.substring(0, string.length-intCount);   
 return string;                      
}                                
function isValidInput( strInput )
{
    var blnResult = false ;

    try
    {
        var strPattern = "[^~`^!@#$%&*()\\-\\+=\\,\\.?'\\[\\]\\{\\}A-Za-z0-9_ /\\\\]";

        regexp = new RegExp(strPattern,"g");

        blnResult = !(regexp.test(strInput));

    }
    catch ( e )
    {
        blnResult = false;
    }

    return blnResult;
}
function isNumeric( strInput )
{
    var blnResult = false ;

    try
    {
        var strPattern = "[^0-9.]";

        regexp = new RegExp(strPattern,"g");

        blnResult = !(regexp.test(strInput));

    }
    catch ( e )
    {
        blnResult = false;
    }

    return blnResult;
}
function isNumericWithValidation( strInput, strDecimal )
{
    var blnResult = false ;
    var redExpResult = false ;

    try
    {
        var strPattern = "[^0-9.]";

        regexp = new RegExp(strPattern,"g");

        redExpResult = !(regexp.test(strInput));
        if (redExpResult)
        {
            blnResult = !(isNaN(strInput*strDecimal));
        }else
        {
            blnResult = redExpResult
        }

    }
    catch ( e )
    {
        blnResult = false;
    }

    return blnResult;
}
function isInteger( strInput )
{
    var blnResult = false ;

    try
    {
        var strPattern = "[^0-9]";

        regexp = new RegExp(strPattern,"g");

        blnResult = !(regexp.test(strInput));

    }
    catch ( e )
    {
        blnResult = false;
    }

    return blnResult;
}
function isNumeric( strInput )
{
    var blnResult = false ;

    try
    {
        var strPattern = "[^0-9.]";

        regexp = new RegExp(strPattern,"g");

        blnResult = !(regexp.test(strInput));

    }
    catch ( e )
    {
        blnResult = false;
    }

    return blnResult;
}
function isNumericWithValidation( strInput, strDecimal )
{
    var blnResult = false ;
    var redExpResult = false ;

    try
    {
        var strPattern = "[^0-9.]";

        regexp = new RegExp(strPattern,"g");

        redExpResult = !(regexp.test(strInput));
        if (redExpResult)
        {
            blnResult = !(isNaN(strInput*strDecimal));
        }else
        {
            blnResult = redExpResult
        }

    }
    catch ( e )
    {
        blnResult = false;
    }

    return blnResult;
}
        function FormatNumeric( objText, intDecimal ){
            var intValueLength = 16;
            FormatNumericLength( objText, intDecimal, intValueLength );
        }
        function FormatNumericLength( objText, intDecimal, intValueLength )
        {
            var strValue = objText.value;
            var strDecimal = "";
            var strDoubleDecimal = false;
            strValue = strValue.replace(/\$|\,/g,'');
            var intPos = strValue.indexOf ( '.' );
            if( intPos != -1 )
            {
                var strValueAfterPos = strValue.slice ( intPos + 1, strValue.length );
                var intPos2 = strValueAfterPos.indexOf ( '.' );
                if(intPos2 != -1)
                {
                    strDoubleDecimal = true;
                }
            }
            if(isNumeric(objText.value) && objText.value != "." && strDoubleDecimal == false && objText.value != ""){
                if ( intDecimal>0 )
                {
                    if ( intPos > 0 )
                    {
                        strValue = strValue.slice ( 0, intPos + (intDecimal+1) );
                        var intZero = (intDecimal+1) - ( strValue.length - intPos );
                        for ( var i=0; i<intZero; i++ )
                        {
                            strValue += '0';
                        }
                        strValue = parseFloat(strValue.slice (0, intPos)) + strValue.slice (intPos, strValue.length);
                    }
                    else if ( intPos == 0 )
                    {
                        strValue = '0' + strValue.slice ( 0, intPos + (intDecimal+1) );
                        var intZero = (intDecimal+1) - ( strValue.length - 1 - intPos );
                        for ( var i=0; i<intZero; i++ )
                        {
                            strValue += '0';
                        }
                    }
                    else
                    {
                        strValue = parseFloat(strValue);
                        strValue += '.'
                        for ( var i=0; i<intDecimal; i++ )
                        {
                            strValue += '0';
                        }
                    }
               }
               else
               {
                    if ( intPos > 0 )
                    {
                      strValue = strValue.slice ( 0, intPos );
                    }
               }
               objText.value = strValue;
            }
            else
            {
                if(intDecimal==0) { 
                    objText.value = '0';
                }
                else {
                    objText.value = '0.00';
                    }
            }
            if(objText.value.length > intValueLength)
            {
                if(intDecimal==0) { 
                    objText.value = '0';
                }
                else {
                    objText.value = '0.00';
                    }
            }
        }
 function TextValidate(objForm, Param) {

     var strErrMsg = '';
     var strErrMsgs = '';
     var strFieldNm = '';
     var strFieldDscp = '';
     var strFieldType = '';

     for (var intCount=0; intCount< Param.length; intCount++) {

         strErrMsg = '';
         strFieldNm = Param[intCount][0];
         strFieldDscp = Param[intCount][1];
         strFieldType = Param[intCount][2];
         strValue = '';
         if (!(objForm.elements[strFieldNm])) {
             return strFieldDscp + " is a mandatory field.";
         }
         if (objForm.elements[strFieldNm].type.indexOf('select') != -1)
         {
             index = objForm.elements[strFieldNm].selectedIndex;
             if (index > 0)
             {
                  strValue = "1"
             }
             else
             {
                  strValue = "";
             }
         }
         else
         {
             strValue = objForm.elements[strFieldNm].value;
         }

         switch(strFieldType){

             case "M" :

                 if (Trim(strValue) == '') {

                     strErrMsg   = strFieldDscp + " is a mandatory field.";
                 }
                 break;

             case "MA" :

                 if (strValue == '') {

                     strErrMsg   = strFieldDscp + " is a mandatory field.";

                 } else {

                    var blnResult = false ;

                    try
                    {
                        var strPattern = "[^A-Za-z0-9]";

                        regexp = new RegExp(strPattern,"g");

                        blnResult = regexp.test(strValue);

                    }
                    catch ( e )
                    {
                        blnResult = false;
                    }
                    if (blnResult == true) {

                        strErrMsg   = strFieldDscp + " should not contain invalid character. ( eg.\", |, :, ;, < and > )";

                    }

                 }
                 break;

             case "AL" :

                 if (strValue != '') {

                    var blnResult = false ;

                    try
                    {
                        var strPattern = "[^A-Za-z ]";

                        regexp = new RegExp(strPattern,"g");

                        blnResult = regexp.test(strValue);

                    }
                    catch ( e )
                    {
                        blnResult = false;
                    }
                    if (blnResult == true) {

                        strErrMsg   = strFieldDscp + " should be alphabet.";

                    }

                 }
                 break;

             case "MAL" :

                 if (strValue == '') {

                     strErrMsg   = strFieldDscp + " is a mandatory field.";

                 } else {

                    var blnResult = false ;

                    try
                    {
                        var strPattern = "[^A-Za-z ]";

                        regexp = new RegExp(strPattern,"g");

                        blnResult = regexp.test(strValue);

                    }
                    catch ( e )
                    {
                        blnResult = false;
                    }
                    if (blnResult == true) {

                        strErrMsg   = strFieldDscp + " should be alphabet.";

                    }

                 }
                 break;

             case "MN" :

                 if (Trim(strValue) == '') {

                     strErrMsg   = strFieldDscp + " is a mandatory field.";

                 } else {

                     if (!isNumeric(strValue) || (strValue == null)) {
                         strErrMsg = strFieldDscp + " should be numeric.";
                     } else {
                         if ((strValue + 0) < 0) {
                               strErrMsg = strFieldDscp + " should be more than 0.";
                         }
                     }
                 }
                 break;

             case "N" :

                 if (strValue != '') {

                     if (!isNumeric(strValue) || (strValue == null)) {
                         strErrMsg = strFieldDscp + " should be numeric.";
                     }
                 }
                 break;

             case "MP" :

                 if (strValue == '') {

                     strErrMsg   = strFieldDscp + " is a mandatory field.";

                 } else {

                     if (!isNumeric(strValue) || (strValue == null)) {
                         strErrMsg = strFieldDscp + " should be numeric.";
                     } else {
                         if ((strValue + 0) <= 0) {
                               strErrMsg = strFieldDscp + " should be more than 0.";
                         }
                     }
                 }
                 break;

             case "MI" :

                 if (Trim(strValue) == '') {

                     strErrMsg   = strFieldDscp + " is a mandatory field.";

                 } else {

                     if (!isInteger(strValue) || (strValue == null)) {
                         strErrMsg = strFieldDscp + " should be numeric.";
                     } else {
                         if ((strValue + 0) < 0) {
                               strErrMsg = strFieldDscp + " should be more than 0.";
                         }
                     }
                 }
                 break;

             case "I" :


             if (!isInteger(strValue) || (strValue == null)) {
                strErrMsg = strFieldDscp + " should be numeric.";
             } else {
                if ((strValue + 0) < 0) {
                    strErrMsg = strFieldDscp + " should be more than 0.";
                }
             }
             break;

             case "P" :

                 if (strValue!= '') {

                     if (!isNumeric(strValue) || (strValue == null)) {
                         strErrMsg =  strFieldDscp + " should be numeric.";
                     } else {
                         if ((strValue + 0) <= 0) {
                               strErrMsg = strFieldDscp + " should be more than 0.";
                         }
                     }
                 }
                 break;
         }

         if (!isValidInput(strValue)) 
         {
             strErrMsg = strFieldDscp + " should not contain invalid character. ( eg.\", |, :, ;, < and > )";
         }


         if (strErrMsg != '') {

             strErrMsgs = strErrMsgs +  strErrMsg;
             return strErrMsgs;
         }

     }

     return strErrMsgs;

 }
 function TextValidateWithDecimal(objForm, Param) {

     var strErrMsg = '';
     var strErrMsgs = '';
     var strFieldNm = '';
     var strFieldDscp = '';
     var strFieldType = '';
     var strFactor = '1';
     var strDecimalValue = '0';

     for (var intCount=0; intCount< Param.length; intCount++) {

         strErrMsg = '';
         strFieldNm = Param[intCount][0];
         strFieldDscp = Param[intCount][1];
         strFieldType = Param[intCount][2];
         strDecimalValue = Param[intCount][3];
         if (strDecimalValue != null && parseInt(strDecimalValue) != 0)
         {
            for (var i=0; i < parseInt(strDecimalValue); i++)
            {
                strFactor = strFactor + '0';
            }
         }
         strValue = '';
         if (!(objForm.elements[strFieldNm])) {
             return strFieldDscp + " is a mandatory field.";
         }
         if (objForm.elements[strFieldNm].type.indexOf('select') != -1)
         {
             index = objForm.elements[strFieldNm].selectedIndex;
             if (index > 0)
             {
                  strValue = "1"
             }
             else
             {
                  strValue = "";
             }
         }
         else
         {
             strValue = objForm.elements[strFieldNm].value;
         }

         switch(strFieldType){

             case "M" :

                 if (Trim(strValue) == '') {

                     strErrMsg   = strFieldDscp + " is a mandatory field.";
                 }
                 break;

             case "MA" :

                 if (strValue == '') {

                     strErrMsg   = strFieldDscp + " is a mandatory field.";

                 } else {

                    var blnResult = false ;

                    try
                    {
                        var strPattern = "[^A-Za-z0-9]";

                        regexp = new RegExp(strPattern,"g");

                        blnResult = regexp.test(strValue);

                    }
                    catch ( e )
                    {
                        blnResult = false;
                    }
                    if (blnResult == true) {

                        strErrMsg   = strFieldDscp + " should not contain invalid character. ( eg.\", |, :, ;, < and > )";

                    }

                 }
                 break;

             case "AL" :

                 if (strValue != '') {

                    var blnResult = false ;

                    try
                    {
                        var strPattern = "[^A-Za-z ]";

                        regexp = new RegExp(strPattern,"g");

                        blnResult = regexp.test(strValue);

                    }
                    catch ( e )
                    {
                        blnResult = false;
                    }
                    if (blnResult == true) {

                        strErrMsg   = strFieldDscp + " should be alphabet.";

                    }

                 }
                 break;

             case "MAL" :

                 if (strValue == '') {

                     strErrMsg   = strFieldDscp + " is a mandatory field.";

                 } else {

                    var blnResult = false ;

                    try
                    {
                        var strPattern = "[^A-Za-z ]";

                        regexp = new RegExp(strPattern,"g");

                        blnResult = regexp.test(strValue);

                    }
                    catch ( e )
                    {
                        blnResult = false;
                    }
                    if (blnResult == true) {

                        strErrMsg   = strFieldDscp + " should be alphabet.";

                    }

                 }
                 break;

             case "MN" :

                 if (Trim(strValue) == '') {

                     strErrMsg   = strFieldDscp + " is a mandatory field.";

                 } else {

                     if (!isNumericWithValidation(strValue, strFactor) || (strValue == null)) {
                         strErrMsg = strFieldDscp + " should be numeric.";
                     } else {
                         if ((strValue + 0) < 0) {
                               strErrMsg = strFieldDscp + " should be more than 0.";
                         }
                     }
                 }
                 break;

             case "N" :

                 if (strValue != '') {

                     if (!isNumericWithValidation(strValue, strFactor) || (strValue == null)) {
                         strErrMsg = strFieldDscp + " should be numeric.";
                     }
                 }
                 break;

             case "MP" :

                 if (strValue == '') {

                     strErrMsg   = strFieldDscp + " is a mandatory field.";

                 } else {

                     if (!isNumericWithValidation(strValue, strFactor) || (strValue == null)) {
                         strErrMsg = strFieldDscp + " should be numeric.";
                     } else {
                         if ((strValue + 0) <= 0) {
                               strErrMsg = strFieldDscp + " should be more than 0.";
                         }
                     }
                 }
                 break;

             case "MI" :

                 if (Trim(strValue) == '') {

                     strErrMsg   = strFieldDscp + " is a mandatory field.";

                 } else {

                     if (!isInteger(strValue) || (strValue == null)) {
                         strErrMsg = strFieldDscp + " should be numeric.";
                     } else {
                         if ((strValue + 0) < 0) {
                               strErrMsg = strFieldDscp + " should be more than 0.";
                         }
                     }
                 }
                 break;

             case "P" :

                 if (strValue!= '') {

                     if (!isNumericWithValidation(strValue, strFactor) || (strValue == null)) {
                         strErrMsg =  strFieldDscp + " should be numeric.";
                     } else {
                         if ((strValue + 0) <= 0) {
                               strErrMsg = strFieldDscp + " should be more than 0.";
                         }
                     }
                 }
                 break;
         }

         if (!isValidInput(strValue)) 
         {
             strErrMsg = strFieldDscp + " should not contain invalid character. ( eg.\", |, :, ;, < and > )";
         }


         if (strErrMsg != '') {

             strErrMsgs = strErrMsgs +  strErrMsg;
             return strErrMsgs;
         }

     }

     return strErrMsgs;

 }
function defaultFocus()
{
    var inputs = document.getElementsByTagName('INPUT');

    for (var intCount = 0; intCount< inputs.length; intCount++)
    {

        if (inputs[intCount].type != "hidden")
        {
            inputs[intCount].focus();
            break;
        }
    }
}


function openWindow(sUrl)
{
	sProps = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no";
	window.open(sUrl,"popupPage",sProps);

}

var blnSubmitted = false;

function onCancelClick()
{
	window.location.href = "login.jsp";
}

function onDownloadManualClick()
{
	document.frmParam.pageaction.value = "Download";
	document.frmParam.submit();
}

//added by jimmyyong 20140630 start
function onNextClick()
{
	document.frmParam.pageaction.value = "Next";
	
	vntParam = new Array();
	vntParam[0] = new Array("corp_id","Corporate ID","I");
	var strErrMsg = "";
	strCorpId = document.frmParam.corp_id.value;
	strUserId = document.frmParam.user_id.value;
	if(strErrMsg == "")
	{
		if((strCorpId == "" && strUserId == "") || strCorpId == "")
			strErrMsg = "Please enter Corporate ID";
		else if(strUserId == "")
			strErrMsg = "Please enter User ID";
	}
	
	if(strErrMsg == "")
	{
		strErrMsg = TextValidate(document.frmParam,vntParam);
	}

	if(strErrMsg != "")
	{
		if(document.getElementById("idErrorMsg"))
			document.getElementById("idErrorMsg").innerHTML = "";
		alert(strErrMsg);
		return;
	}
	else
	{
		document.frmParam.submit();
	}
}

function onBackClick()
{
    if (!blnSubmitted)
    {
        blnSubmitted = true;
        document.frmBack.submit();
    }
}

function onLoadBody()
{
	var isNext = document.frmParam.isNext.value;

	if(isNext == "N")
	{
		  document.frmParam.corp_id.readOnly = true;
	}
}
//added by jimmyyong 20140630 end

function onSubmitClick()
{
	if(blnSubmitted)
		return;

	vntParam = new Array();
	vntParam[0] = new Array("corp_id","Corporate ID","I");
	//comment by jimmyyong 20140806 for superId remove security passcode// vntParam[1] = new Array("pass_cd","Security Passcode","A");
	
	var strErrMsg = "";
	
	strCorpId = document.frmParam.corp_id.value;
	strQuestionA = document.frmParam.question_a.value;
	strQuestionB = document.frmParam.question_b.value;
	strQuestionC = document.frmParam.question_c.value;
	//comment by jimmyyong 20140806 for superId remove security passcode// strSecPassCd = document.frmParam.pass_cd.value;

	if(strErrMsg == "")
	{
		if(strCorpId == "")
			strErrMsg = "Please enter Corporate ID";
		else if(strQuestionA == "")
			strErrMsg = "Please enter "+"What is the main operating current account number of your company in RHB?";
		else if(strQuestionB == "")
			strErrMsg = "Please enter "+"What is your System Administrator 2's name?";
		else if(strQuestionC == "")
			strErrMsg = "Please enter "+"What is your System Administrator 1's name?";
			
			//comment by jimmyyong 20140806 for superId remove security passcode// else if(strSecPassCd == "")
			//comment by jimmyyong 20140806 for superId remove security passcode// strErrMsg = "Please enter Security Passcode";
	}

	if(strErrMsg == "")
	{
		strErrMsg = TextValidate(document.frmParam,vntParam);
	}

	if(strErrMsg != "")
	{
		alert(strErrMsg);
		return;
	}

	else
	{
		blnSubmitted = true;
		document.frmParam.submit();
	}
}

mtdValidateBrowserVersion();

function mtdValidateBrowserVersion(){
	var data = 
	{
		'servAction': 'browserMinimumValidation',
		'userAgent': navigator.userAgent,
		'sourcePage': 'login'
    };

	$.ajax({
	    url:"/rhbcams/BrowserMinimumValidation",
	    type:"post",
	    dataType:"json",
	    data:data,
	    async:false,
	    cache:false,
	    success:function(data,status){
			var browserVersionList = JSON.parse(JSON.stringify(data));
			var isError = checkJSONMessage(browserVersionList);
			
			if(!isError){
				var arrayContent = browserVersionList.content;
				var isValidBrowserVersion = arrayContent.isValidBrowserVersion;
				var redirectPage = arrayContent.redirectPage;
				if(isValidBrowserVersion == 'false'){
					window.location.href = redirectPage;
				}
			}
		} ,
	    error:function()
	    {  
	    }
	   });
}

function checkJSONMessage(data){
	if(data.header.error_dscp != ""){
		var errorHeader = data.header;
		return true;
	}
	else{
		return false;
	}
}
</script>

<body id="base" onLoad="defaultFocus();onLoadBody();">
	<div id="header" class="landing">
				<div class="header_panel">
					<div class="logo"><span></span></div>					
					<div class="user_panel landing">
						<div class="userinfo">
							<span class="date">16:15 PM | Tuesday, 14 April 2026</span>
						</div>
					</div>					
				</div>
			</div>
			
			<div id="content">			
				<div class="content-base-wrapper">
						<div class="portlet-ftl-body">
							
							<span class="header">Forgot Password</span>
							<p>Kindly provide the information below. Once completed, kindly click "Submit".</p>
							<form name="frmParam" method="POST" action="forgot_pass.jsp" onSubmit="return false;">
								
<!-- 									<span class="icn-info" onclick="show('ftl-note')"></span> -->
<!-- 									<div id="ftl-note"> -->
<!-- 									<a href="javascript:void(0)" onclick="hide('ftl-note')"><div class="float_right">X</div></a> -->
<!-- 									Please exclude the dash (-), alphabets are case sensitive. -->
<!-- 									<div class="clear"></div> -->
<!-- 									</div>			 -->
<!-- 									<script> -->






<!-- 									</script> -->
								<table><tr><td>
								<DIV class="fld_group "><DIV class="input_label"><SPAN>Reflex Corporate ID</SPAN><SPAN class="clsAsterisk">*</span></DIV></DIV><div class="input_field float_left"  style="width : 325px " ><div class="input_fieldL"></div><INPUT TYPE="TEXT" ID="corp_id" NAME="corp_id" MAXLENGTH="6" SIZE="325" VALUE=""  ><div class="input_fieldR"></div></div>
		            				</td></tr>
		            				<tr><td>
		            				</br>
<DIV class="fld_group "><DIV class="input_label"><SPAN>User ID</SPAN><SPAN class="clsAsterisk">*</span></DIV></DIV><div class="input_field float_left"  style="width : 325px " ><div class="input_fieldL"></div><INPUT TYPE="TEXT" ID="user_id" NAME="user_id" MAXLENGTH="14" SIZE="325" VALUE=""  ><div class="input_fieldR"></div></div>
		        		            </td></tr>
		            		  		
				
								    
								    
								    
								    <INPUT TYPE="HIDDEN" ID="isNext" NAME="isNext" VALUE="Y">

			    					</table>
									<div class="input_field_wrapper marginT_20">
										<div class="input_field_sidebutton first">
											 <a class="btn_grey">
												 <div class="btn_L"></div>
												 <div class="btn_M" ID="Next" NAME="Next" onClick="Javascript:onNextClick();">Next</div>
												 <div class="btn_R"></div>
											 </a>
										</div>
										<div class="input_field_sidebutton second">
											 
										</div>
										<div class="clear"></div>
									</div>	
															
									</div>						
									<div class="portlet-ftl-bottom">
									<ul id="listing-icn">
										<li><a href="login.jsp">Back to Login page</a></li>
									</ul>
									</div>						
				
			   
			   
			
			 
			   
			  
<INPUT TYPE="HIDDEN" ID="pageaction" NAME="pageaction" VALUE="">

<INPUT TYPE="HIDDEN" ID="ques_grp" NAME="ques_grp" VALUE="2">


<INPUT TYPE="HIDDEN" ID="is_next" NAME="is_next" VALUE="">




        </form>
        
        
        <FORM NAME="frmBack" ACTION="forgot_pass.jsp" METHOD="POST">
		<INPUT TYPE="HIDDEN" ID="pageaction" NAME="pageaction" VALUE="BACK">

		</FORM>
		
        </div>
	</div>
</div>
		
			<br/>
			<br/>
			<br/>
			<br/>
			<br/>
			<br/>
			<br/>
			<!-- <div id="footer">			
				<div class="details">
					<div class="float_left"><span>Copyright &copy; 2016 RHB Reflex. All rights reserved.</span></div>
					<div class="float_right">
					<a href="javascript:void(0);"><span>FAQ</span></a> <span class="divider">|</span> <a href="javascript:void(0);"><span>Terms & Conditions</span></a> <span class="divider">|</span> <a href="javascript:void(0);"><span>Privacy</span></a> <span class="divider">|</span> <a href="javascript:void(0);"><span>Client Charter</span></a> <span class="divider">|</span> <a href="javascript:void(0);"><span>Disclaimer</span></a>
					</div>
				</div>
			</div> -->
			<div id="footer" style="bottom: 0; position: fixed; width: 100%">
			<div class="details">
				<div class="float_left">
					<span>Copyright &copy; 2016 RHB Reflex. All rights reserved.</span>
				</div>
				<div class="float_right">
					<a href="javascript:;"
						onclick="javascript:openWindow('http://www.rhbgroup.com/~/media/files/malaysia/product-and-services/bussiness/reflex-online-cash-management/faqs.ashx?la=en');"><span>FAQ</span></a>
					<span class="divider">|</span> <a href="javascript:;"
						onclick="javascript:openWindow('http://www.rhbgroup.com/files/business/transaction-banking/reflex/TC_Reflex_English.pdf');"><span>Terms & Conditions</span></a> <span class="divider">|</span> <a
						href="javascript:;"
						onclick="javascript:openWindow('http://www.rhbgroup.com/general-info/privacy-policy/');"><span>Privacy</span></a>
					<span class="divider">|</span> <a href="javascript:;"
						onclick="javascript:openWindow('https://www.rhbgroup.com/others/customer-service-charter/index.html');"><span>Client Charter</span></a> <span class="divider">|</span> <a href="javascript:;"
						onclick="javascript:openWindow('https://www.rhbgroup.com/others/disclaimers/index.html');"><span>Disclaimer</span></a>
						
						<!-- Client Charter url changed by Ramesh ENH86016 old url http://www.rhbgroup.com/general-info/client-charter/-->
						<!-- Terms & Conditions url changed by Ramesh ENH86016 old url http://www.rhbgroup.com/general-info/terms-and-conditions/-->
						<!-- Disclaimer url changed by Ramesh ENH86016 old url http://www.rhbgroup.com/general-info/disclaimer/ -->

				</div>
			</div>
		</div>
		
</body>
</html>

