var w3c = document.getElementById ? true : false;
var iex = document.all ? true : false;
var ns4 = document.layers ? true : false;

function fixNetscape() {
    if (origWidth != window.innerWidth || origHeight != window.innerHeight) {
        window.location.reload();
    }
}
if (ns4) {
    origWidth = window.innerWidth;
    origHeight = window.innerHeight;
    window.onresize = fixNetscape;
}
function newImage(src) {
    img = new Image();
    img.src = src;
    return img;
}
function imageSwap(img, obj, div) {
    if (ns4 && div != null) {
        document.layers[div].document.images[img].src = obj.src;
    } else {
        document.images[img].src = obj.src;
    }
}
function getStyle(name, nest) {
    nest = nest ? 'document.'+nest+'.' : '';
    return w3c ? document.getElementById(name).style : iex ? document.all[name].style : ns4 ? eval(nest+'document.'+name) : false;
}

Menus = new Object();
var curMenu = null;

MakeMenu = function(name,left,top,rollimg,rollout,rollover,rolldiv)
{
	this.name = name;
	this.left = left;
	this.top = top;
	this.timer = null;
	this.rollimg = rollimg;
	this.rollout = newImage(rollout);
	this.rollover = newImage(rollover);
	this.rolldiv = (rolldiv != null) ? rolldiv : null;
	this.obj = name+'Object';
	eval(this.obj+'=this');
};

MakeMenu.prototype.show = function(AppPage) 
{
 // alert(AppPage)
 // alert(this.name)
 clearTimeout(this.timer);
 getStyle(this.name).visibility = "visible";
 imageSwap(this.rollimg,this.rollover,this.rolldiv);
 curMenu = this.name;
};

MakeMenu.prototype.hide = function() 
{
	//  this.timer = setTimeout(this.obj+'.hideIt('+this.page+')', 500);   
	this.timer = setTimeout(this.obj+'.hideIt()', 200);   
};

MakeMenu.prototype.hideIt = function() 
{ 

  getStyle(this.name).visibility = "hidden";
  if (curMenu == this.name) {
     imageSwap(this.rollimg,this.rollout,this.rolldiv);
 }
};

MakeMenu.prototype.startMenu = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+this.left+'\" top=\"'+this.top+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+this.left+'px; top:'+this.top+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};


hideCur = function () {
    if (curMenu != null) {
        Menus[curMenu].hideIt();
        curMenu = null;
    }
};

endMenu = function(){
     return ns4 ? '<\/layer>' : '<\/div>';
}

createMenu = function(name,left,top,rollimg,rollout,rollover,rolldiv)
{
 Menus[name] = new MakeMenu(name,left,top,rollimg,rollout,rollover,rolldiv);
}


Menus2 = new Object();
var curMenu2 = null;

MakeMenu2 = function (name, left, top) {
    this.name = name;
    this.left = left;
    this.top = top;
    this.timer = null;
    this.obj = name+'Object';
    eval(this.obj+'=this');
};
MakeMenu2.prototype.show2 = function() {
    clearTimeout(this.timer);
    getStyle(this.name).visibility = "visible";
    curMenu2 = this.name;
};
MakeMenu2.prototype.hide2 = function() {
    this.timer = setTimeout(this.obj+'.hideIt2()', 100);
};
MakeMenu2.prototype.hideIt2 = function() {
    getStyle(this.name).visibility = "hidden";
};

MakeMenu2.prototype.startMenu2 = function() {

    var html;
    if (ns4) {
        html = '<layer name=\"'+this.name+'\" left=\"'+this.left+'\" top=\"'+this.top+'\" z-index=\"1000\" visibility=\"hidden\" ';
    } else {
		
        html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+this.left+'px; top:'+this.top+'px; z-index:1000; visibility:hidden\" ';
    }
    html += 'onMouseOver=\"Menus2.'+this.name+'.show2()\" onMouseOut=\"Menus2.'+this.name+'.hide2()\">';
    return html;
};


MakeMenu2.prototype.newstartMenu2 = function() {

    var html;
    if (ns4) {
        html = '<layer name=\"'+this.name+'\" left=\"'+this.left+'\" top=\"'+this.top+'\" z-index=\"1000\" visibility=\"hidden\" ';
    } else {
		var testvar;
		testvar=this.top-40;
		
        html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+this.left+'px; top:'+testvar+'px; z-index:1000; visibility:hidden\" ';
    }
    html += 'onMouseOver=\"Menus2.'+this.name+'.show2()\" onMouseOut=\"Menus2.'+this.name+'.hide2()\">';
    return html;
};


hideCur2 = function () {
    if (curMenu2 != null) {
        Menus2[curMenu2].hideIt2();
        curMenu2 = null;
    }
};

endMenu2 = function(){
     return ns4 ? '<\/layer>' : '<\/div>';
}

createMenu2 = function(name,left,top){
    Menus2[name] = new MakeMenu2(name,left,top);
}


function popup_launch(url,width,height)
{
  var microsite=null;
  try
  {
	microsite=window.open(url,'microsite','width='+width+',height='+height+',top='+(screen.height-height)/2+',left='+(screen.width-width)/2+',resizable=no,scrollbars=no,status=no');
	if ((microsite == null) || (typeof(microsite) == "undefined"))
     {
	  alert("Your browser or a software tool installed on your computer appears to be blocking popups.\n\nPlease enable popups in order to be able to view this section.");
	 }
   }
   catch (e)
   {
	  alert("Your browser or a software tool installed on your computer appears to be blocking popups.\n\nPlease enable popups in order to be able to view this section.");
   }
  try
  {
	if (parseInt(navigator.appVersion)>=4)
	 {
	microsite.window.focus();
	 }
   }
   catch (e2)
   {
   }
}

function popup_newwindow_scoll(url,width,height)
{
microsite=window.open(url,'microsite','width='+width+',height='+height+',top='+(screen.height-height)/2+',left='+(screen.width-width)/2+',resizable=1,scrollbars=yes,status=no');	
}

function popup_graph(url,width,height)
{
 var microsite=null;
 microsite=window.open(url,'nokhithagraph','width='+width+',height='+height+',top='+(screen.height-height)/2+',left='+(screen.width-width)/2+',resizable=no,scrollbars=no,status=no');
 if (parseInt(navigator.appVersion)>=4)
 {
  microsite.window.focus();
 }
}

// go for gold popup
function open_win_goforgold()
{
  try 
   {
	var popupWindow=null;
//	popupWindow = window.open("/retaillogin/RetailLogin.html","_blank","toolbar=no, location=no, status=yes,resizable=yes")
	popupWindow = window.open("https://adcbactive.com/RRUser/OnlineRegInp.html","_blank","toolbar=no, location=no, status=yes,resizable=no,scrollbars=yes,width=800,height=1200")
	  if (parseInt(navigator.appVersion)>=4)
		{
			popupWindow.window.focus();
		}
	  if ((popupWindow == null) || (typeof(popupWindow) == "undefined"))
		{
			alert("Your browser or a software tool installed on your computer appears to be blocking popups.\n\nPlease enable popups in order to be able to view this section.");
		}
    }
catch (e)
{
	alert("Your browser or a software tool installed on your computer appears to be blocking popups.\n\nPlease enable popups in order to be able to view this section." + e.Number);
}

}


function open_win()
{
  try 
   {
	var popupWindow=null;
	popupWindow = window.open("/active/corporate/","_blank","toolbar=no, location=no, status=yes,resizable=yes")
	//popupWindow = window.open("/active/corporate/","_blank","toolbar=no, location=no, status=yes,resizable=yes")
	  if (parseInt(navigator.appVersion)>=4)
		{
			popupWindow.window.focus();
		}
	  if ((popupWindow == null) || (typeof(popupWindow) == "undefined"))
		{
			alert("Your browser or a software tool installed on your computer appears to be blocking popups.\n\nPlease enable popups in order to be able to view this section.");
		}
    }
catch (e)
{
	alert("Your browser or a software tool installed on your computer appears to be blocking popups.\n\nPlease enable popups in order to be able to view this section." + e.Number);
}
//window.open("https://adcbactive.com/COUser","_blank","toolbar=no, location=no, status=yes,resizable=yes")

}
function getSuitableWindowSize(width,height)
{
	 size=new Object(); 
	 size.width=(width > screen.width - 50) ? screen.width - 50  : width;
	 size.height=(height > screen.height - 80) ? screen.height - 80 : height;
	 size.left=((screen.width - size.width) / 2 ) - 10;
	 size.top=((screen.height - size.height) /2 ) - 20;
	 if((width + 50)>screen.width || (height + 80) > screen.height) size.scrollbars='yes';
	 return size;	
}	 

function open_popup(url,width,height) { 
size=getSuitableWindowSize(width,height);
//window.open(url,"_blank","scrollbars=no,toolbar=no, location=no, status=no,resizable=no,height=130,width=190")
wind_params="scrollbars=no,toolbar=no, location=no, status=no,resizable=no,height=130,width=190,left="+size.left+",top="+size.top; 
window.open(url,"_blank",wind_params);
	}
	
function open_popupTC(url) { 
//window.open(url,"_blank","scrollbars=no,toolbar=no, location=no, status=no,resizable=no,height=130,width=190")
wind_params="scrollbars=yes,toolbar=no, location=no, status=no,resizable=yes,height=580,width=520,left=100,top=100"; 
window.open(url,"_blank",wind_params);
	}
	
	
function open_win2()
{
//window.open("https://adcbactive.com/RRUser","_blank","scrollbars=yes,toolbar=no, location=no, status=yes,resizable=yes")
 try
   {
	var popupWindow=null;
	//popupWindow = window.open("/retaillogin/RetailLogin.html","_blank","scrollbars=yes,toolbar=no, location=no, status=yes,resizable=yes")
	//popupWindow = window.open("https://adcbactive.com/RRUser","_blank","width=800,scrollbars=yes,toolbar=no, location=no, status=yes,resizable=yes")
                popupWindow = window.open("/active/retail/","_blank","width=800,scrollbars=yes,toolbar=no, location=no, status=yes,resizable=yes")

	  if (parseInt(navigator.appVersion)>=4)
		{
			popupWindow.window.focus();
		}
	if ((popupWindow == null) || (typeof(popupWindow) == "undefined"))
		{
			alert("Your browser or a software tool installed on your computer appears to be blocking popups.\n\nPlease enable popups in order to be able to view this section.");
		}
   }
  catch (e)
   {
	alert("Your browser or a software tool installed on your computer appears to be blocking popups.\n\nPlease enable popups in order to be able to view this section.");
   }
}

function open_win3()
{
//window.open("https://adcbactive.com/RRUser","_blank","scrollbars=yes,toolbar=no, location=no, status=yes,resizable=yes")
 try
   {
	var popupWindow=null;
	popupWindow = window.open("https://adcbactive.com/RRUser/OnlineRegInp.html","_blank","scrollbars=yes,toolbar=no, location=no, status=yes,resizable=yes")
	//popupWindow = window.open("/active/retail/","_blank","width=800,scrollbars=yes,toolbar=no, location=no, status=yes,resizable=yes")
	  if (parseInt(navigator.appVersion)>=4)
		{
			popupWindow.window.focus();
		}
	if ((popupWindow == null) || (typeof(popupWindow) == "undefined"))
		{
			alert("Your browser or a software tool installed on your computer appears to be blocking popups.\n\nPlease enable popups in order to be able to view this section.");
		}
   }
  catch (e)
   {
	alert("Your browser or a software tool installed on your computer appears to be blocking popups.\n\nPlease enable popups in order to be able to view this section.");
   }
}



function publishmenu(AppPage)
{
Browser(AppPage);





                           //Section personalbanking START 
                           document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking.startMenu());</script>');
                           document.write(' <table cellpadding="0" cellspacing="0" width="175" border="0" class="level1">     ');
                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');


// SG 2 ----------- 



                                                      //Section personalbanking SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="http://www.adcbtouchpoints.com/" target=_blank >&nbsp;TouchPoints</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');


                                                      //Section personalbanking SubLinks START  (If Subsection Yes)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" onmouseover="Menus.personalbanking_accounts.show();" onmouseout="Menus.personalbanking_accounts.hide();" ><a href="#"  >&nbsp;Accounts</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');

                                                      //Section personalbanking_accounts START
                                                      document.write(' <tr>');
                                                      document.write(' <td>');

                                                      document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_accounts.startMenu());</script>');
                                                      document.write(' <table cellpadding="0" cellspacing="0" width="175" border="0"class="level2" id="level2" >     ');
                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');

// SG 3 -----------  


                                                                                 //Section personalbanking_accounts SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/accounts/aspire/aspire.asp" >&nbsp;Aspire&nbsp;-&nbsp;Relationship&nbsp;Pricing</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');

                                                                                 //Section personalbanking_accounts SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/accounts/current_account/current.asp" >&nbsp;Current&nbsp;Account</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');

                                                                                 //Section personalbanking_accounts SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/accounts/Savings_Call_Account/savings_call_acc.asp" >&nbsp;Savings&nbsp;and&nbsp;Call&nbsp;Account</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');

                                                                                 //Section personalbanking_accounts SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/accounts/fd_account/FD_Account.asp" >&nbsp;Fixed&nbsp;Deposit&nbsp;Account</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');

                                                                                 //Section personalbanking_accounts SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/accounts/mdd4/mdd4.asp" >&nbsp;Million&nbsp;Dollar&nbsp;Dreams&nbsp;4</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');

                                                                                 //Section personalbanking_accounts SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/accounts/Millionaire_Destiny_Savings_Account/overview.asp" >&nbsp;Millionaire&nbsp;Destiny&nbsp;Savings&nbsp;Account</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');







// SG 3 ----------- 


                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');
                                                      document.write('</table>');
                                                      document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                      document.write(' ');


                                                      document.write(' </td>');
                                                      document.write(' </tr>');
                                                      //Section personalbanking_accounts END


                                                      //Section personalbanking SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/personalbanking/BusinessChoice/overview.asp"  >&nbsp;BusinessChoice</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');


                                                      //Section personalbanking SubLinks START  (If Subsection Yes)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" onmouseover="Menus.personalbanking_debitcards.show();" onmouseout="Menus.personalbanking_debitcards.hide();" ><a href="#"  >&nbsp;Debit&nbsp;Cards</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');

                                                      //Section personalbanking_debitcards START
                                                      document.write(' <tr>');
                                                      document.write(' <td>');

                                                      document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_debitcards.startMenu());</script>');
                                                      document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level2" id="level2" >     ');
                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');

// SG 3 -----------  


                                                                                 //Section personalbanking_debitcards SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/debitcards/easypay/overview.asp" >&nbsp;Easy&nbsp;Pay&nbsp;Debit&nbsp;Card</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');

                                                                                 //Section personalbanking_debitcards SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/debitcards/adcbprivilegeclub/overview.asp" >&nbsp;Privilege&nbsp;Club&nbsp;Debit&nbsp;Card</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');

                                                                                 //Section personalbanking_debitcards SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="http://www.adcbexcellency.com/" target=_blank>&nbsp;Excellency&nbsp;Premium&nbsp;Debit&nbsp;Card</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');



                                                                                 //Section personalbanking_debitcards SubLinks START  (If Subsection Yes)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" onmouseover="Menus.personalbanking_debitcards_specialoffers.show();" onmouseout="Menus.personalbanking_debitcards_specialoffers.hide();" ><a href="#"  >&nbsp;Special&nbsp;Offers</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');
            
                                                                                 //Section personalbanking_debitcards_specialoffers START
                                                                                 document.write(' <tr>');
                                                                                 document.write(' <td>');

                                                                                 document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_debitcards_specialoffers.startMenu());</script>');
                                                                                 document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level3" id="level3" >     ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                                                 document.write(' </tr> ');



                                                                                                             //Section personalbanking_debitcards_specialoffers SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="/personalbanking/debitcards/specialoffers/marhabaloungeoffer.asp">&nbsp;Marhaba&nbsp;Lounge&nbsp;Access</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');


                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write('</table>');
                                                                                 document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                                                 document.write(' ');


                                                                                 document.write(' </td>');
                                                                                 document.write(' </tr>');
                                                                                 //Section personalbanking_debitcards_specialoffers END







// SG 3 ----------- 


                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');
                                                      document.write('</table>');
                                                      document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                      document.write(' ');


                                                      document.write(' </td>');
                                                      document.write(' </tr>');
                                                      //Section personalbanking_debitcards END

                                                      //Section personalbanking SubLinks START  (If Subsection Yes)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" onmouseover="Menus.personalbanking_loans.show();" onmouseout="Menus.personalbanking_loans.hide();" ><a href="#"  >&nbsp;Loans</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');

                                                      //Section personalbanking_loans START
                                                      document.write(' <tr>');
                                                      document.write(' <td>');

                                                      document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_loans.startMenu());</script>');
                                                      document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level2" id="level2" >     ');
                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');

// SG 3 -----------  




                                                                                 //Section personalbanking_loans SubLinks START  (If Subsection Yes)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" onmouseover="Menus.personalbanking_loans_personal_loans.show();" onmouseout="Menus.personalbanking_loans_personal_loans.hide();" ><a href="#"  >&nbsp;Personal&nbsp;Loans</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');
            
                                                                                 //Section personalbanking_loans_personal_loans START
                                                                                 document.write(' <tr>');
                                                                                 document.write(' <td>');

                                                                                 document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_loans_personal_loans.startMenu());</script>');
                                                                                 document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level3" id="level3" >     ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                                                 document.write(' </tr> ');



                                                                                                             //Section personalbanking_loans_personal_loans SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="/personalbanking/loans/personal_loans/loansuaenationals.asp">&nbsp;UAE&nbsp;Nationals</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');



                                                                                                             //Section personalbanking_loans_personal_loans SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="/personalbanking/loans/personal_loans/loansexpat.asp">&nbsp;Expatriates</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');


                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write('</table>');
                                                                                 document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                                                 document.write(' ');


                                                                                 document.write(' </td>');
                                                                                 document.write(' </tr>');
                                                                                 //Section personalbanking_loans_personal_loans END

                                                                                 //Section personalbanking_loans SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/loans/instllmentlonexp/insmallmentloan.asp" >&nbsp;INsmallMENT&nbsp;Loan&nbsp;for&nbsp;Expatriates</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');



                                                                                 //Section personalbanking_loans SubLinks START  (If Subsection Yes)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" onmouseover="Menus.personalbanking_loans_mortgageservices.show();" onmouseout="Menus.personalbanking_loans_mortgageservices.hide();" ><a href="#"  >&nbsp;Mortgage&nbsp;Services</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');
            
                                                                                 //Section personalbanking_loans_mortgageservices START
                                                                                 document.write(' <tr>');
                                                                                 document.write(' <td>');

                                                                                 document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_loans_mortgageservices.startMenu());</script>');
                                                                                 document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level3" id="level3" >     ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                                                 document.write(' </tr> ');



                                                                                                             //Section personalbanking_loans_mortgageservices SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="/personalbanking/loans/mortgageservices/mortgageservices.asp">&nbsp;Overview</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');



                                                                                                             //Section personalbanking_loans_mortgageservices SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="/personalbanking/loans/mortgageservices/mortgagerefinance.asp">&nbsp;Mortgage&nbsp;Refinance</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');



                                                                                                             //Section personalbanking_loans_mortgageservices SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="/personalbanking/loans/mortgageservices/mortgageoverdraft.asp">&nbsp;Mortgage&nbsp;Overdraft</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');



                                                                                                             //Section personalbanking_loans_mortgageservices SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="/personalbanking/loans/mortgageservices/faq.asp">&nbsp;FAQ</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');


                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write('</table>');
                                                                                 document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                                                 document.write(' ');


                                                                                 document.write(' </td>');
                                                                                 document.write(' </tr>');
                                                                                 //Section personalbanking_loans_mortgageservices END



                                                                                 //Section personalbanking_loans SubLinks START  (If Subsection Yes)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" onmouseover="Menus.personalbanking_loans_excellencymortgageservices.show();" onmouseout="Menus.personalbanking_loans_excellencymortgageservices.hide();" ><a href="#"  >&nbsp;Excellency&nbsp;Mortgage&nbsp;Services</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');
            
                                                                                 //Section personalbanking_loans_excellencymortgageservices START
                                                                                 document.write(' <tr>');
                                                                                 document.write(' <td>');

                                                                                 document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_loans_excellencymortgageservices.startMenu());</script>');
                                                                                 document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level3" id="level3" >     ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                                                 document.write(' </tr> ');



                                                                                                             //Section personalbanking_loans_excellencymortgageservices SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="/personalbanking/loans/excellencymortgageservices/emforuaenat.asp">&nbsp;Excellency&nbsp;Mortgage&nbsp;for&nbsp;UAE&nbsp;Nationals</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');



                                                                                                             //Section personalbanking_loans_excellencymortgageservices SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="/personalbanking/loans/excellencymortgageservices/emforexpat.asp">Excellency&nbsp;Mortgage&nbsp;for&nbsp;Expatriates</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');


                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write('</table>');
                                                                                 document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                                                 document.write(' ');


                                                                                 document.write(' </td>');
                                                                                 document.write(' </tr>');
                                                                                 //Section personalbanking_loans_excellencymortgageservices END

                                                                                 //Section personalbanking_loans SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/loans/smartloan/overview.asp" >&nbsp;Smart&nbsp;Loans</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');

                                                                                 //Section personalbanking_loans SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/loans/Ambition_Loan/Ambition_Loan_Education.asp" >&nbsp;Ambition&nbsp;Loan</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');



                                                                                 //Section personalbanking_loans SubLinks START  (If Subsection Yes)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" onmouseover="Menus.personalbanking_loans_carloans.show();" onmouseout="Menus.personalbanking_loans_carloans.hide();" ><a href="#"  >&nbsp;Car&nbsp;Loans</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');
            
                                                                                 //Section personalbanking_loans_carloans START
                                                                                 document.write(' <tr>');
                                                                                 document.write(' <td>');

                                                                                 document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_loans_carloans.startMenu());</script>');
                                                                                 document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level3" id="level3" >     ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                                                 document.write(' </tr> ');



                                                                                                             //Section personalbanking_loans_carloans SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="/personalbanking/loans/carloans/carloans.asp">&nbsp;Car&nbsp;Loans</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');



                                                                                                             //Section personalbanking_loans_carloans SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="/personalbanking/loans/carloans/specialoffer.asp">Special&nbsp;Offer</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');


                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write('</table>');
                                                                                 document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                                                 document.write(' ');


                                                                                 document.write(' </td>');
                                                                                 document.write(' </tr>');
                                                                                 //Section personalbanking_loans_carloans END







// SG 3 ----------- 


                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');
                                                      document.write('</table>');
                                                      document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                      document.write(' ');


                                                      document.write(' </td>');
                                                      document.write(' </tr>');
                                                      //Section personalbanking_loans END

                                                      //Section personalbanking SubLinks START  (If Subsection Yes)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" onmouseover="Menus.personalbanking_credit_cards.show();" onmouseout="Menus.personalbanking_credit_cards.hide();" ><a href="/personalbanking/credit_cards/overview.asp"  >&nbsp;Credit&nbsp;Cards</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');

                                                      //Section personalbanking_credit_cards START
                                                      document.write(' <tr>');
                                                      document.write(' <td>');

                                                      document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_credit_cards.startMenu());</script>');
                                                      document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level2" id="level2" >     ');
                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');

// SG 3 -----------  


                                                                                 //Section personalbanking_credit_cards SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/credit_cards/adcbcardshomecenter/Home_center.asp" >&nbsp;ADCB&nbsp;Cards&nbsp;&&nbsp;Home&nbsp;Centre&nbsp;Promotion</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');

                                                                                 //Section personalbanking_credit_cards SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/personalbanking/credit_cards/visa/Visa_FIFA.asp" >&nbsp;Visa&nbsp;FIFA</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');







// SG 3 ----------- 


                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');
                                                      document.write('</table>');
                                                      document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                      document.write(' ');


                                                      document.write(' </td>');
                                                      document.write(' </tr>');
                                                      //Section personalbanking_credit_cards END


                                                      //Section personalbanking SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/personalbanking/fasttrack/overview.asp"  >&nbsp;Fast&nbsp;Track</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');


                                                      //Section personalbanking SubLinks START  (If Subsection Yes)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" onmouseover="Menus.personalbanking_bancassurance.show();" onmouseout="Menus.personalbanking_bancassurance.hide();" ><a href="/personalbanking/bancassurance/overview.asp"  >&nbsp;Bancassurance</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');

                                                      //Section personalbanking_bancassurance START
                                                      document.write(' <tr>');
                                                      document.write(' <td>');

                                                      document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_bancassurance.startMenu());</script>');
                                                      document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level2" id="level2" >     ');
                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');

// SG 3 -----------  








// SG 3 ----------- 



                                                                      //Section personalbanking_bancassurance SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/personalbanking/bancassurance/Car_Insurance.asp"  > &nbsp;Auto&nbsp;Insurance</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');



                                                                      //Section personalbanking_bancassurance SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/personalbanking/bancassurance/ProtectorPlus.asp"  > &nbsp;Protector&nbsp;Plus</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');


                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');
                                                      document.write('</table>');
                                                      document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                      document.write(' ');


                                                      document.write(' </td>');
                                                      document.write(' </tr>');
                                                      //Section personalbanking_bancassurance END

                                                      //Section personalbanking SubLinks START  (If Subsection Yes)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" onmouseover="Menus.personalbanking_investmentservices.show();" onmouseout="Menus.personalbanking_investmentservices.hide();" ><a href="#"  >&nbsp;Investment&nbsp;Services</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');

                                                      //Section personalbanking_investmentservices START
                                                      document.write(' <tr>');
                                                      document.write(' <td>');

                                                      document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_investmentservices.startMenu());</script>');
                                                      document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level2" id="level2" >     ');
                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');

// SG 3 -----------  








// SG 3 ----------- 



                                                                      //Section personalbanking_investmentservices SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/personalbanking/investmentservices/overview.asp"  > &nbsp;Al&nbsp;Nokhitha&nbsp;Fund</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');



                                                                      //Section personalbanking_investmentservices SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/personalbanking/investmentservices/albasherfund.asp"  > &nbsp;Al&nbsp;Basha’er&nbsp;Fund</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');



                                                                      //Section personalbanking_investmentservices SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/personalbanking/investmentservices/msciuaeindex.asp"  > &nbsp;ADCB&nbsp;MSCI&nbsp;UAE<br>&nbsp;&nbsp;&nbsp;Index&nbsp;Fund</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');



                                                                      //Section personalbanking_investmentservices SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/personalbanking/investmentservices/msciarabianindex.asp"  > &nbsp;ADCB&nbsp;MSCI&nbsp;Arabian<br>&nbsp;&nbsp;&nbsp;Markets&nbsp;Index&nbsp;Fund</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');



                                                                      //Section personalbanking_investmentservices SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/personalbanking/investmentservices/almurshid.asp"  > &nbsp;Al&nbsp;Murshid</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');



                                                                      //Section personalbanking_investmentservices SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/personalbanking/investmentservices/Global_Markets_Newsletter.asp"  > &nbsp;Global&nbsp;Markets&nbsp;Newsletter</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');


                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');
                                                      document.write('</table>');
                                                      document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                      document.write(' ');


                                                      document.write(' </td>');
                                                      document.write(' </tr>');
                                                      //Section personalbanking_investmentservices END


                                                      //Section personalbanking SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="http://www.adcbmeethaq.com" target=_blank >&nbsp;ADCB&nbsp;Meethaq</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');


                                                      //Section personalbanking SubLinks START  (If Subsection Yes)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" onmouseover="Menus.personalbanking_adcbprivilegeclub.show();" onmouseout="Menus.personalbanking_adcbprivilegeclub.hide();" ><a href="/personalbanking/adcbprivilegeclub/overview.asp"  >&nbsp;ADCB&nbsp;Privilege&nbsp;Club</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');

                                                      //Section personalbanking_adcbprivilegeclub START
                                                      document.write(' <tr>');
                                                      document.write(' <td>');

                                                      document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_adcbprivilegeclub.startMenu());</script>');
                                                      document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level2" id="level2" >     ');
                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');

// SG 3 -----------  








// SG 3 ----------- 


                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');
                                                      document.write('</table>');
                                                      document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                      document.write(' ');


                                                      document.write(' </td>');
                                                      document.write(' </tr>');
                                                      //Section personalbanking_adcbprivilegeclub END


                                                      //Section personalbanking SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/personalbanking/nriservices/overview.asp"  >&nbsp;NRI&nbsp;Services</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');



                                                      //Section personalbanking SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="http://www.adcbexcellency.com/" target=_blank >&nbsp;Excellency</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');



                                                      //Section personalbanking SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/personalbanking/special_offers/overview.asp"  >&nbsp;Special&nbsp;Offers&nbsp;Directory</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');





// SG 2 ----------- 


                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');
                           document.write('</table>');
                           document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                           document.write(' ');
                           //Section personalbanking END




                           //Section businessbanking START 
                           document.write(' <script type="text/JavaScript">document.write(Menus.businessbanking.startMenu());</script>');
                           document.write(' <table cellpadding="0" cellspacing="0" width="170" border="0" class="level1">     ');
                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');


// SG 2 ----------- 



                                                      //Section businessbanking SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/businessbanking/financing/overview.asp"  >&nbsp;Financing</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');


                                                      //Section businessbanking SubLinks START  (If Subsection Yes)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" onmouseover="Menus.businessbanking_cashmanagement.show();" onmouseout="Menus.businessbanking_cashmanagement.hide();" ><a href="/businessbanking/cashmanagement/cashmanagement.asp"  >&nbsp;Cash&nbsp;Management</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');

                                                      //Section businessbanking_cashmanagement START
                                                      document.write(' <tr>');
                                                      document.write(' <td>');

                                                      document.write(' <script type="text/JavaScript">document.write(Menus.businessbanking_cashmanagement.startMenu());</script>');
                                                      document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level2" id="level2" >     ');
                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');

// SG 3 -----------  








// SG 3 ----------- 



                                                                      //Section businessbanking_cashmanagement SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/businessbanking/cashmanagement/escrowaccount.asp"  > Escrow&nbsp;Account&nbsp;Services</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');


                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');
                                                      document.write('</table>');
                                                      document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                      document.write(' ');


                                                      document.write(' </td>');
                                                      document.write(' </tr>');
                                                      //Section businessbanking_cashmanagement END


                                                      //Section businessbanking SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/businessbanking/tradeservices/overview.asp"  >&nbsp;Trade&nbsp;Services</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');


                                                      //Section businessbanking SubLinks START  (If Subsection Yes)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" onmouseover="Menus.businessbanking_treasury.show();" onmouseout="Menus.businessbanking_treasury.hide();" ><a href="/businessbanking/treasury/overview.asp"  >&nbsp;Treasury&nbsp;and&nbsp;Investments</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');

                                                      //Section businessbanking_treasury START
                                                      document.write(' <tr>');
                                                      document.write(' <td>');

                                                      document.write(' <script type="text/JavaScript">document.write(Menus.businessbanking_treasury.startMenu());</script>');
                                                      document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level2" id="level2" >     ');
                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');

// SG 3 -----------  








// SG 3 ----------- 



                                                                      //Section businessbanking_treasury SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/businessbanking/treasury/treasury.asp"  > Overview</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');


                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');
                                                      document.write('</table>');
                                                      document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                      document.write(' ');


                                                      document.write(' </td>');
                                                      document.write(' </tr>');
                                                      //Section businessbanking_treasury END


                                                      //Section businessbanking SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="http://www.adcbmeethaq.com" target=_blank >&nbsp;ADCB&nbsp;Meethaq</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');



                                                      //Section businessbanking SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/businessbanking/sme/overview.asp"  >&nbsp;SME&nbsp;Banking</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');





// SG 2 ----------- 


                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');
                           document.write('</table>');
                           document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                           document.write(' ');
                           //Section businessbanking END




                           //Section investmentbanking START 
                           document.write(' <script type="text/JavaScript">document.write(Menus.investmentbanking.startMenu());</script>');
                           document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0" class="level1">     ');
                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');


// SG 2 ----------- 





// SG 2 ----------- 



                                                        //Section investmentbanking SubLinks PAGE START  
                                                        document.write(' <tr>');
                                                        document.write('  <td class="menutext" ><a href="/investmentbanking/finint.asp"  >Financial&nbsp;Institutions</a>&nbsp;</td>');
                                                        document.write(' </tr> ');
                                                        document.write(' <tr>');
                                                        document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                        document.write(' </tr> ');


                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');
                           document.write('</table>');
                           document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                           document.write(' ');
                           //Section investmentbanking END




                           //Section financialtools START 
                           document.write(' <script type="text/JavaScript">document.write(Menus.financialtools.startMenu());</script>');
                           document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0" class="level1">     ');
                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');


// SG 2 ----------- 





// SG 2 ----------- 



                                                        //Section financialtools SubLinks PAGE START  
                                                        document.write(' <tr>');
                                                        document.write('  <td class="menutext" ><a href="/financialtools/calculator.asp"  >Calculator</a>&nbsp;</td>');
                                                        document.write(' </tr> ');
                                                        document.write(' <tr>');
                                                        document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                        document.write(' </tr> ');


                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');
                           document.write('</table>');
                           document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                           document.write(' ');
                           //Section financialtools END




                           //Section customerservice START 
                           document.write(' <script type="text/JavaScript">document.write(Menus.customerservice.startMenu());</script>');
                           document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0" class="level1">     ');
                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');


// SG 2 ----------- 





// SG 2 ----------- 



                                                        //Section customerservice SubLinks PAGE START  
                                                        document.write(' <tr>');
                                                        document.write('  <td class="menutext" ><a href="/customerservice/contactus.asp"  >&nbsp;Contact&nbsp;Us</a>&nbsp;</td>');
                                                        document.write(' </tr> ');
                                                        document.write(' <tr>');
                                                        document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                        document.write(' </tr> ');



                                                        //Section customerservice SubLinks PAGE START  
                                                        document.write(' <tr>');
                                                        document.write('  <td class="menutext" ><a href="/customerservice/onlineapp.asp"  >&nbsp;Download&nbsp;Application&nbsp;Forms</a>&nbsp;</td>');
                                                        document.write(' </tr> ');
                                                        document.write(' <tr>');
                                                        document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                        document.write(' </tr> ');



                                                        //Section customerservice SubLinks PAGE START  
                                                        document.write(' <tr>');
                                                        document.write('  <td class="menutext" ><a href="/customerservice/utilitybill.asp"  >&nbsp;Utility&nbsp;Bill&nbsp;Payments</a>&nbsp;</td>');
                                                        document.write(' </tr> ');
                                                        document.write(' <tr>');
                                                        document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                        document.write(' </tr> ');



                                                        //Section customerservice SubLinks PAGE START  
                                                        document.write(' <tr>');
                                                        document.write('  <td class="menutext" ><a href="/customerservice/safedepositlockers.asp"  >&nbsp;Lockers</a>&nbsp;</td>');
                                                        document.write(' </tr> ');
                                                        document.write(' <tr>');
                                                        document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                        document.write(' </tr> ');



                                                        //Section customerservice SubLinks PAGE START  
                                                        document.write(' <tr>');
                                                        document.write('  <td class="menutext" ><a href="/customerservice/remittances.asp"  >&nbsp;Remittances</a>&nbsp;</td>');
                                                        document.write(' </tr> ');
                                                        document.write(' <tr>');
                                                        document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                        document.write(' </tr> ');



                                                        //Section customerservice SubLinks PAGE START  
                                                        document.write(' <tr>');
                                                        document.write('  <td class="menutext" ><a href="/customerservice/scheduleoffees.asp"  >&nbsp;Schedule&nbsp;of&nbsp;Fees</a>&nbsp;</td>');
                                                        document.write(' </tr> ');
                                                        document.write(' <tr>');
                                                        document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                        document.write(' </tr> ');



                                                        //Section customerservice SubLinks PAGE START  
                                                        document.write(' <tr>');
                                                        document.write('  <td class="menutext" ><a href="/customerservice/termconditions.asp"  >&nbsp;Terms&nbsp;&&nbsp;Conditions</a>&nbsp;</td>');
                                                        document.write(' </tr> ');
                                                        document.write(' <tr>');
                                                        document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                        document.write(' </tr> ');


                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');
                           document.write('</table>');
                           document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                           document.write(' ');
                           //Section customerservice END




                           //Section waystobank START 
                           document.write(' <script type="text/JavaScript">document.write(Menus.waystobank.startMenu());</script>');
                           document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0" class="level1">     ');
                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');


// SG 2 ----------- 


                                                      //Section waystobank SubLinks START  (If Subsection Yes)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" onmouseover="Menus.waystobank_internetbanking.show();" onmouseout="Menus.waystobank_internetbanking.hide();" ><a href="/waystobank/internetbanking/aboutemailfraud.asp"  >&nbsp;ADCB@ctive<br>&nbsp;&nbsp;&nbsp;Internet&nbsp;Banking</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');

                                                      //Section waystobank_internetbanking START
                                                      document.write(' <tr>');
                                                      document.write(' <td>');

                                                      document.write(' <script type="text/JavaScript">document.write(Menus.waystobank_internetbanking.startMenu());</script>');
                                                      document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level2" id="level2" >     ');
                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');

// SG 3 -----------  


                                                                                 //Section waystobank_internetbanking SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="#" onclick=javascript:open_win();>&nbsp;Corporate</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');



                                                                                 //Section waystobank_internetbanking SubLinks START  (If Subsection Yes)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" onmouseover="Menus.waystobank_internetbanking_personal.show();" onmouseout="Menus.waystobank_internetbanking_personal.hide();" ><a href="#" onclick=javascript:open_win2(); >&nbsp;Personal</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');
            
                                                                                 //Section waystobank_internetbanking_personal START
                                                                                 document.write(' <tr>');
                                                                                 document.write(' <td>');

                                                                                 document.write(' <script type="text/JavaScript">document.write(Menus.waystobank_internetbanking_personal.startMenu());</script>');
                                                                                 document.write(' <table cellpadding="0" cellspacing="0" width="100" border="0"class="level3" id="level3" >     ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                                                 document.write(' </tr> ');



                                                                                                             //Section waystobank_internetbanking_personal SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="#" onclick=javascript:open_win3();>&nbsp;Register</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');



                                                                                                             //Section waystobank_internetbanking_personal SubLinks START  (Show in menu Yes)
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="menutext3" ><a href="#" onclick=javascript:open_win2();>Login</a>&nbsp;</td>');
                                                                                                             document.write(' </tr> ');
                                                                                                             document.write(' <tr>');
                                                                                                             document.write('  <td class="itemsep3" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                                             document.write(' </tr> ');


                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write('</table>');
                                                                                 document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                                                 document.write(' ');


                                                                                 document.write(' </td>');
                                                                                 document.write(' </tr>');
                                                                                 //Section waystobank_internetbanking_personal END







// SG 3 ----------- 



                                                                      //Section waystobank_internetbanking SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/waystobank/internetbanking/aboutib.asp"  > &nbsp;About</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');


                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');
                                                      document.write('</table>');
                                                      document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                      document.write(' ');


                                                      document.write(' </td>');
                                                      document.write(' </tr>');
                                                      //Section waystobank_internetbanking END


                                                      //Section waystobank SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/waystobank/estatement/overview.asp"  >&nbsp;e-Statement</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');



                                                      //Section waystobank SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/waystobank/mobilebanking/mobilebanking.asp"  >&nbsp;ADCBMobile</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');



                                                      //Section waystobank SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/waystobank/branches/overview.asp"  >&nbsp;Branches</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');



                                                      //Section waystobank SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/waystobank/atms/overview.asp"  >&nbsp;ATMs</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');



                                                      //Section waystobank SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/waystobank/ivr/overview.asp"  >&nbsp;IVR</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');



                                                      //Section waystobank SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/waystobank/contactcentre/overview.asp"  >&nbsp;Contact&nbsp;Centre</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');





// SG 2 ----------- 


                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');
                           document.write('</table>');
                           document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                           document.write(' ');
                           //Section waystobank END




                           //Section aboutus START 
                           document.write(' <script type="text/JavaScript">document.write(Menus.aboutus.startMenu());</script>');
                           document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0" class="level1">     ');
                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');


// SG 2 ----------- 



                                                      //Section aboutus SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/aboutus/mission/overview.asp"  >&nbsp;Mission&nbsp;and&nbsp;Vision</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');



                                                      //Section aboutus SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/aboutus/events/events.asp"  >&nbsp;Events&nbsp;&&nbsp;Sponsorships</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');



                                                      //Section aboutus SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/aboutus/corporategovernance/overview.asp"  >&nbsp;Corporate&nbsp;Governance</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');



                                                      //Section aboutus SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/images/ADCB_CSR_2008.pdf" target=_blank >&nbsp;Corporate&nbsp;Social&nbsp;Responsibility</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');


                                                      //Section aboutus SubLinks START  (If Subsection Yes)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" onmouseover="Menus.aboutus_investorrelations.show();" onmouseout="Menus.aboutus_investorrelations.hide();" ><a href="/aboutus/investorrelations/overview.asp"  >&nbsp;Investor&nbsp;Relations</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');

                                                      //Section aboutus_investorrelations START
                                                      document.write(' <tr>');
                                                      document.write(' <td>');

                                                      document.write(' <script type="text/JavaScript">document.write(Menus.aboutus_investorrelations.startMenu());</script>');
                                                      document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level2" id="level2" >     ');
                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');

// SG 3 -----------  








// SG 3 ----------- 



                                                                      //Section aboutus_investorrelations SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/aboutus/investorrelations/investorrelations.asp"  > &nbsp;Overview</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');



                                                                      //Section aboutus_investorrelations SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/aboutus/investorrelations/financialreports.asp"  > &nbsp;Financial&nbsp;Reports</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');



                                                                      //Section aboutus_investorrelations SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/aboutus/investorrelations/annualreports.asp"  > &nbsp;Annual&nbsp;Reports</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');



                                                                      //Section aboutus_investorrelations SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/aboutus/investorrelations/creditratings.asp"  > &nbsp;Credit&nbsp;Ratings</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');



                                                                      //Section aboutus_investorrelations SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/aboutus/investorrelations/adcbsecurities.asp"  > &nbsp;ADCB&nbsp;Securities</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');



                                                                      //Section aboutus_investorrelations SubLinks PAGE START  
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="menutext2" ><a href="/aboutus/investorrelations/shareholder_feedback.asp"  > &nbsp;Shareholder&nbsp;Feedback</a>&nbsp;</td>');
                                                                      document.write(' </tr> ');
                                                                      document.write(' <tr>');
                                                                      document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" /></td>');
                                                                      document.write(' </tr> ');


                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');
                                                      document.write('</table>');
                                                      document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                      document.write(' ');


                                                      document.write(' </td>');
                                                      document.write(' </tr>');
                                                      //Section aboutus_investorrelations END

                                                      //Section aboutus SubLinks START  (If Subsection Yes)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" onmouseover="Menus.aboutus_mediacenter.show();" onmouseout="Menus.aboutus_mediacenter.hide();" ><a href="#"  >&nbsp;Media&nbsp;Center</a>&nbsp;<img src="/Images/navarrow_tcm7-610.gif" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');

                                                      //Section aboutus_mediacenter START
                                                      document.write(' <tr>');
                                                      document.write(' <td>');

                                                      document.write(' <script type="text/JavaScript">document.write(Menus.aboutus_mediacenter.startMenu());</script>');
                                                      document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0"class="level2" id="level2" >     ');
                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');

// SG 3 -----------  


                                                                                 //Section aboutus_mediacenter SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/aboutus/mediacenter/prnews/overview.asp" >&nbsp;PR&nbsp;News</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');

                                                                                 //Section aboutus_mediacenter SubLinks START  (If Subsection No)
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="menutext2" ><a href="/aboutus/mediacenter/presskit/presskit.asp" >&nbsp;ADCB&nbsp;Press&nbsp;Kit</a>&nbsp;</td>');
                                                                                 document.write(' </tr> ');
                                                                                 document.write(' <tr>');
                                                                                 document.write('  <td class="itemsep2" ><img src="/Images/blank_tcm7-102.gif" width="100%" height="1" alt="" /></td>');
                                                                                 document.write(' </tr> ');







// SG 3 ----------- 


                                                      document.write(' <tr>');
                                                      document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                                                      document.write(' </tr> ');
                                                      document.write('</table>');
                                                      document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                                                      document.write(' ');


                                                      document.write(' </td>');
                                                      document.write(' </tr>');
                                                      //Section aboutus_mediacenter END


                                                      //Section aboutus SubLinks START  (If Subsection No)
                                                      document.write(' <tr>');
                                                      document.write('  <td class="menutext" ><a href="/aboutus/careers/overview.asp"  >&nbsp;Careers</a>&nbsp;</td>');
                                                      document.write(' </tr> ');
                                                      document.write(' <tr>');
                                                      document.write('  <td class="itemsep1" ><img src="/Images/blank_tcm7-102.gif"  width="100%" height="1" alt="" />&nbsp;</td>');
                                                      document.write(' </tr> ');





// SG 2 ----------- 


                           document.write(' <tr>');
                           document.write('  <td><img src="/Images/blank_tcm7-102.gif" width="1" height="0" alt="" /></td>');
                           document.write(' </tr> ');
                           document.write('</table>');
                           document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
                           document.write(' ');
                           //Section aboutus END





}