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;
};

/* Personal Banking Accounts */
MakeMenu.prototype.startMenuPBAccounts = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+125+'\" top=\"'+5+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+125+'px; top:'+5+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*personal banking - all in one account*/
MakeMenu.prototype.startMenuAIO = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+121+'\" top=\"'+10+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+121+'px; top:'+10+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*personal banking - debit card - Special offers */
MakeMenu.prototype.startMenuDC = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+121+'\" top=\"'+9+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+121+'px; top:'+9+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*personal banking - debit card - special offers */

MakeMenu.prototype.startMenuDCO = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+250+'\" top=\"'+97+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+250+'px; top:'+97+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};


/*personal banking - loans */
MakeMenu.prototype.startMenuLoans = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+121+'\" top=\"'+25+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+121+'px; top:'+25+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*personal banking - loans - personal loans */

MakeMenu.prototype.startMenuPLoans = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+115+'\" top=\"'+5+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+115+'px; top:'+5+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*personal banking - loans - personal loans - UAE National */

MakeMenu.prototype.startMenuUAENat = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+105+'\" top=\"'+5+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+105+'px; top:'+5+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};


/*personal banking - loans - mortgage services */
MakeMenu.prototype.startMenuLMortgage = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+115+'\" top=\"'+38+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+115+'px; top:'+38+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*personal banking - loans - excellency mortgage services */
MakeMenu.prototype.startMenuEMortgage = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+171+'\" top=\"'+62+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+171+'px; top:'+62+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*personal banking - creditcards */
MakeMenu.prototype.startMenuCCards = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+115+'\" top=\"'+70+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+115+'px; top:'+70+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*personal banking - creditcards - Bank Offers */
MakeMenu.prototype.startMenuCBOffers = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+135+'\" top=\"'+70+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+135+'px; top:'+70+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*personal banking - creditcards - Exclusive traveller offers */
MakeMenu.prototype.startMenuCETOffers = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+135+'\" top=\"'+88+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+135+'px; top:'+88+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*personal banking - creditcards - Merchant Offers */
MakeMenu.prototype.startMenuCMOffers = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+135+'\" top=\"'+100+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+135+'px; top:'+100+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};


/*personal banking - Investment Services */
MakeMenu.prototype.startMenuIServices = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+120+'\" top=\"'+83+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+120+'px; top:'+83+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*personal banking - Investment Services - Al Nokhita */
MakeMenu.prototype.startMenuIANokhita = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+120+'\" top=\"'+5+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+120+'px; top:'+5+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};


/*personal banking - Shariah Compliant Services */
MakeMenu.prototype.startMenuSCServices = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+120+'\" top=\"'+150+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+120+'px; top:'+150+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*personal banking - Privilege Club */
MakeMenu.prototype.startMenuPrivilege = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+120+'\" top=\"'+120+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+120+'px; top:'+120+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};


/*Business banking - Cash Management */
MakeMenu.prototype.startMenuCash = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+140+'\" top=\"'+23+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+140+'px; top:'+23+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};



/*Business banking - Treasury */
MakeMenu.prototype.startMenuTreasury = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+140+'\" top=\"'+63+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+140+'px; top:'+63+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};


/*Business banking - Meethaq */
MakeMenu.prototype.startMenuMeethaq = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+120+'\" top=\"'+85+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+120+'px; top:'+85+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};


/*Ways to Bank - ADCBActive */
MakeMenu.prototype.startMenu_ADCBActive = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+-100+'\" top=\"'+7+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+-100+'px; top:'+7+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*Ways to Bank - ADCBActive - Personal */
MakeMenu.prototype.startMenuOnline = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+-121+'\" top=\"'+29+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+-121+'px; top:'+29+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*Ways to Bank - ADCBActive - Personal Banking - Menu */
MakeMenu.prototype.startMenuADCBPers = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+-181+'\" top=\"'+49+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+-181+'px; top:'+49+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};


/*About Us - Investor Relations */
MakeMenu.prototype.startMenuAUIRelations = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+-98+'\" top=\"'+60+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+-98+'px; top:'+60+'px; z-index:1000; visibility:hidden\" ';
 }
 html += 'onMouseOver=\"Menus.'+this.name+'.show()\" onMouseOut=\"Menus.'+this.name+'.hide()\">';
 return html;
};

/*About Us - Media Center */
MakeMenu.prototype.startMenuAUMCenter = function() 
{
 var html;
 if (ns4) 
 {
  html = '<layer name=\"'+this.name+'\" left=\"'+-110+'\" top=\"'+80+'\" z-index=\"1000\" visibility=\"hidden\" ';
 }
 else 
 {
  html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+-110+'px; top:'+80+'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;
};

/* Ways to Bank - AdcbActive - Personal - Go For Gold  */

MakeMenu2.prototype.startMenu2AA = function() {

    var html;
    if (ns4) {
        html = '<layer name=\"'+this.name+'\" left=\"'+145+'\" top=\"'+325+'\" z-index=\"1000\" visibility=\"hidden\" ';
    } else {
		
        html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+145+'px; top:'+325+'px; z-index:1000; visibility:hidden\" ';
    }
    html += 'onMouseOver=\"Menus2.'+this.name+'.show2()\" onMouseOut=\"Menus2.'+this.name+'.hide2()\">';
    return html;
};

MakeMenu2.prototype.startMenu2GoForGold = function() {

    var html;
    if (ns4) {
        html = '<layer name=\"'+this.name+'\" left=\"'+210+'\" top=\"'+350+'\" z-index=\"1000\" visibility=\"hidden\" ';
    } else {
		
        html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+210+'px; top:'+350+'px; z-index:1000; visibility:hidden\" ';
    }
    html += 'onMouseOver=\"Menus2.'+this.name+'.show2()\" onMouseOut=\"Menus2.'+this.name+'.hide2()\">';
    return html;
};

/* new */

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;
};

/* new end*/

/* new for balance trasfer in personal */

MakeMenu2.prototype.allinonestartMenu2 = 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+312;
		var testvarleft;
		testvarleft=this.left+45;
	
        html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+testvarleft+'px; top:'+testvar+'px; z-index:1000; visibility:hidden\" ';
    }
    html += 'onMouseOver=\"Menus2.'+this.name+'.show2()\" onMouseOut=\"Menus2.'+this.name+'.hide2()\">';
    return html;
};

/* new end */

/* new for privilege club */

MakeMenu2.prototype.startMenu2Privilege = function() {

    var html;
    if (ns4) {
        html = '<layer name=\"'+this.name+'\" left=\"'+181+'\" top=\"'+450+'\" z-index=\"1000\" visibility=\"hidden\" ';
    } else {
	
        html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+181+'px; top:'+450+'px; z-index:1000; visibility:hidden\" ';
    }
    html += 'onMouseOver=\"Menus2.'+this.name+'.show2()\" onMouseOut=\"Menus2.'+this.name+'.hide2()\">';
    return html;
};


/* new for shariah services */

MakeMenu2.prototype.startMenu2Shariah = function() {

    var html;
    if (ns4) {
        html = '<layer name=\"'+this.name+'\" left=\"'+181+'\" top=\"'+420+'\" z-index=\"1000\" visibility=\"hidden\" ';
    } else {
	
        html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+181+'px; top:'+420+'px; z-index:1000; visibility:hidden\" ';
    }
    html += 'onMouseOver=\"Menus2.'+this.name+'.show2()\" onMouseOut=\"Menus2.'+this.name+'.hide2()\">';
    return html;
};

/* new for Al Nokitha */

MakeMenu2.prototype.startMenu2Nokitha = function() {

    var html;
    if (ns4) {
        html = '<layer name=\"'+this.name+'\" left=\"'+230+'\" top=\"'+400+'\" z-index=\"1000\" visibility=\"hidden\" ';
    } else {
	
        html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+230+'px; top:'+400+'px; z-index:1000; visibility:hidden\" ';
    }
    html += 'onMouseOver=\"Menus2.'+this.name+'.show2()\" onMouseOut=\"Menus2.'+this.name+'.hide2()\">';
    return html;
};


/* new for credit card travel offers */

MakeMenu2.prototype.travelstartMenu2 = 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+320;
		var testvarleft;
		testvarleft=this.left+20;
	
        html = '<div id=\"'+this.name+'\" style=\"position:absolute; left:'+testvarleft+'px; top:'+testvar+'px; z-index:1000; visibility:hidden\" ';
    }
    html += 'onMouseOver=\"Menus2.'+this.name+'.show2()\" onMouseOut=\"Menus2.'+this.name+'.hide2()\">';
    return html;
};

/* new end*/

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);
}

createMenuTravel2 = function(name,left,top){
    Menus2[name] = new MakeMenu2(name,left,top);
}

createMenuAllinone = 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("http://www.adcb.com/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")
	
	//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("/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(appPath,AppPage)
{
Browser(AppPage);

//personalbanking
document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking.startMenu());</script>');
document.write(' <table cellpadding="0" cellspacing="0" border="0" class="level1">     ');

document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');

document.write(' <tr>');
document.write('  <td class="menutext"><a target=_blank href="http://www.adcbtouchpoints.com/Homepage_en_gb.asp">TouchPoints</a></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');

document.write('  <td class="menutext" onmouseover="Menus.personalbanking_personalaccounts.show();" onmouseout="Menus.personalbanking_personalaccounts.hide();" ><a href="#">Accounts&nbsp;</a><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" />&nbsp;</td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr>     ');
document.write(' <tr>');

document.write('  <td class="menutext" onmouseover="Menus.personalbanking_DC.show();" onmouseout="Menus.personalbanking_DC.hide();" ><a href="#">Debit Card</a><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" />&nbsp;</td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');

document.write('  <td class="menutext" onmouseover="Menus.personalbanking_loans.show();" onmouseout="Menus.personalbanking_loans.hide();" ><a href="#">Loans</a><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" />&nbsp;</td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');

document.write('  <td class="menutext" onmouseover="Menus.personalbanking_creditcards.show();" onmouseout="Menus.personalbanking_creditcards.hide();" ><a href="#">Credit Cards</a><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" />&nbsp;</td>');

document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'consumer/fasttrack.asp">Fast Track </a></td>');
document.write(' </tr>');

document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'consumer/wealth/Bancassurance.asp">Bancassurance</a></td>');
document.write(' </tr>');

document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext" onmouseover="Menus.personalbanking_investment.show();" onmouseout="Menus.personalbanking_investment.hide();" ><a href="#">Investment Services</a><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" />&nbsp;</td>');
document.write(' </tr>');

document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext" onmouseover="Menus.personalbanking_shariah.show();" onmouseout="Menus.personalbanking_shariah.hide();" ><a target=_blank href="http://www.adcbmeethaq.com">ADCB Meethaq</a><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" />&nbsp;</td>');
document.write(' </tr>');

/*document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext" onmouseover="Menus.personalbanking_privilege.show();" onmouseout="Menus.personalbanking_privilege.hide();" ><a href="/english/consumer/privilegeclub.asp">ADCB Privilege Club</a>&nbsp;</td>');
document.write(' </tr>');*/


document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'consumer/privilegeclub.asp">ADCB Privilege Club</a></td>');
document.write(' </tr>');

document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'consumer/nriservices.asp">NRI Services</a></td>');
document.write(' </tr>');

document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a target=_blank href="http://www.adcbexcellency.com">Excellency</a></td>');
document.write(' </tr>');


/*document.write(' <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a target=_blank href="http://www.adcbmeethaq.com">Meethaq</a></td>');
document.write(' </tr>');
*/
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');
document.write(' ');


//consumer banking - personal accounts
document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_personalaccounts.startMenuPBAccounts());</script>');
document.write(' <table cellpadding="0" cellspacing="0" border="0" width="150" class="level2" id="level2">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td class="menutext2" onmouseover="hideCur(); Menus.personalbanking_allinone.show()" onmouseout="Menus.personalbanking_allinone.hide()" ><a href="' + appPath +'consumer/personal/allinone.asp">All-in-1 Account</a></td>');
document.write(' </tr> ');


/*document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/personal/allinone.asp">All-in-1 Account</a></td>');
document.write(' </tr> ');
*/document.write(' <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/personal/currentsavings.asp">Current&nbsp;/&nbsp;Savings</a></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');



document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/personal/million-dollar-dream.asp">Million Dollar Dreams 3</a></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');

/*document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/personal/interestplus.asp">Interest Plus Fixed Deposit</a></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
*/

document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/personal/fixed.asp">Fixed&nbsp;Deposit&nbsp;Account</a></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/personal/callaccounts.asp">Call&nbsp;Account</a></td>');
document.write(' </tr>');

/*document.write(' <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/personal/smartdebit/default.asp">Smart&nbsp;Debit&nbsp;Card</a></td>');
document.write(' </tr> ');
document.write(' <tr>');*/
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');

/*document.write(' <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/personal/multiplier.asp">Multiplier&nbsp;Deposit</a></td>');
document.write(' </tr> ');*/


document.write(' </table>');

//personalbanking - Loans - Personal Loans
document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_allinone.startMenuAIO());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="110" border="0" class="level3">     ');

/*document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write('        <tr> ');
document.write('         <td class="menutext3"><a href="' + appPath +'consumer/personal/balancetransfer.asp">Balance Transfer</a></td> ');
document.write('        </tr> ');
document.write('        <tr> ');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');*/

document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');

document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');
document.write(' ');


//personalbanking - Offers
document.write('       <script type="text/JavaScript">document.write(Menus.personalbanking_DC.startMenuDC());</script> ');
document.write('       <table cellpadding="0" cellspacing="0" width="110" border="0" class="level2">      ');

document.write('        <tr> ');
document.write('         <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td> ');
document.write('        </tr>  ');
document.write('         <td class="menutext2"   onmouseover="hideCur(); Menus.personalbanking_DC.show()"><a href="' + appPath +'consumer/personal/easypay.asp ">Easy Pay Debit Card  </a></td> ');
document.write('        </tr> ');

document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');
document.write('         <td class="menutext2"   onmouseover="hideCur(); Menus.personalbanking_DC.show()"><a href="' + appPath +'consumer/prv_debitcard.asp">Privilege Debit Card  </a></td> ');
document.write('        </tr> ');
document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');

document.write('         <td class="menutext2"   onmouseover="hideCur(); Menus.personalbanking_DC.show()"><a href="http://www.adcbexcellency.com/" target="_blank">Excellency Premium Debit Card   </a></td> ');
document.write('        </tr> ');
document.write('        <tr> ');

document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');
document.write('         <td class="menutext2"   onmouseover="hideCur(); Menus.personalbanking_DC.show()"><a href="/english/consumer/personal/chipoffers.asp" >Chip Offers   </a></td> ');
document.write('        </tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');

/*document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');
document.write('         <td class="menutext2"   onmouseover="hideCur(); Menus.personalbanking_DC.show()"><a href="/english/consumer/personal/specialoffers.asp" >Special Offers   </a></td> ');
document.write('        </tr> ');

document.write('        <tr> ');
document.write('         <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td> ');
document.write('        </tr>  ');*/



//personalbanking - Debit Card - Offers - Special Offers
document.write(' <tr>');
document.write('  <td class="menutext2" onmouseover="hideCur(); Menus.personalbanking_DCO.show()" onmouseout="Menus.personalbanking_DCO.hide()"><a href="' + appPath +'consumer/personal/specialoffers.asp">Special Offers</a><img src="' + appPath +'common/image/generic/navarrow.gif" border="0" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');

document.write('       </table> ');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');
document.write(' ');


document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_DCO.startMenuDCO());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0" class="level3">    ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="7" alt="" /></td>');
document.write(' </tr> ');
document.write('        <tr> ');
document.write('         <td class="menutext3"   onmouseover="hideCur(); Menus.personalbanking_DC.show()" onmouseout="Menus.personalbanking_DC.hide()"><a href="' + appPath +'consumer/personal/tp_promotions.asp">TouchPoints Promotion</a></td> ');
document.write('        </tr> ');

/*document.write('        <tr> ');
document.write('         <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');
document.write('         <td class="menutext3"   onmouseover="hideCur(); Menus.personalbanking_DC.show()" onmouseout="Menus.personalbanking_DC.hide()"><a href="' + appPath +'consumer/personal/chipoffers.asp">Chip Offers </a></td> ');
document.write('        </tr> ');*/

/*document.write('        <tr> ');
document.write('         <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');
document.write('         <td class="menutext3"   onmouseover="hideCur(); Menus.personalbanking_DC.show()" onmouseout="Menus.personalbanking_DC.hide()"><a href="' + appPath +'consumer/personal/smartdebit/touchpoints.asp">Current Offers </a></td> ');
document.write('        </tr> ');*/

document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');


document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');
document.write(' ');


//personalbanking - loans
document.write('       <script type="text/JavaScript">document.write(Menus.personalbanking_loans.startMenuLoans());</script> ');
document.write('       <table cellpadding="0" cellspacing="0" border="0" class="level2">      ');
document.write('        <tr> ');
document.write('         <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td> ');
document.write('        </tr>  ');
document.write(' <tr>');
document.write('  <td class="menutext2" onmouseover="hideCur(); Menus.personalbanking_personalloans.show()" onmouseout="Menus.personalbanking_personalloans.hide()" ><a href="#">Personal Loans</a><img src="' + appPath +'common/image/generic/navarrow.gif" border="0" alt="" /></td>');
document.write(' </tr> ');

document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="190" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');

document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="' + appPath +'consumer/loans/Insmallment_loans.asp">INsmallMENT Loan for Expatriates</a></td> ');
document.write('        </tr>  ');
document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="120" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');

document.write(' <tr>');
document.write('  <td class="menutext2" onmouseover="hideCur(); Menus.personalbanking_mortgage.show()" onmouseout="Menus.personalbanking_mortgage.hide()" ><a href="' + appPath +'consumer/loans/Mortgageservices/default.asp">Mortgage Services</a><img src="' + appPath +'common/image/generic/navarrow.gif" border="0" alt="" /></td>');
document.write(' </tr> ');
document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="120" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');

document.write(' <tr>');
document.write('  <td class="menutext2" onmouseover="hideCur(); Menus.personalbanking_excellencymortgage.show()" onmouseout="Menus.personalbanking_excellencymortgage.hide()" ><a href="#">Excellency Mortgage Services </a><img src="' + appPath +'common/image/generic/navarrow.gif" border="0" alt="" /></td>');
document.write(' </tr> ');
document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="120" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');


document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="' + appPath +'consumer/loans/smartloans.asp">Smart&nbsp;Loans</a></td> ');
document.write('        </tr>  ');
document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="120" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');

document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="' + appPath +'consumer/loans/autoloans.asp">Car&nbsp;Loan</a></td> ');
document.write('        </tr>  ');
document.write('        <tr> ');
document.write('         <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td> ');
document.write('        </tr>        ');
document.write('       </table> ');
document.write(' ');




//personalbanking - Loans - Personal Loans
document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_personalloans.startMenuPLoans());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="110" border="0" class="level3">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write('        <tr> ');
document.write('         <td class="menutext3" onmouseover="hideCur(); Menus.personalbanking_UAENational.show()" onmouseout="Menus.personalbanking_UAENational.hide()"><a href="' + appPath +'consumer/loans/loansuae.asp">UAE&nbsp;Nationals</a></td> ');
document.write('        </tr> ');
document.write('        <tr> ');
document.write('         <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="100" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');
document.write('        <tr> ');
document.write('         <td class="menutext3"><a href="' + appPath +'consumer/loans/loansexpats.asp">Expatriates</a></td> ');
document.write('        </tr> ');
document.write('        <tr> ');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');

//personalbanking - Loans - Personal Loans - UAE National 
document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_UAENational.startMenuUAENat());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="110" border="0" class="level4">     ');

/*document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write('        <tr> ');
document.write('         <td class="menutext4"><a href="' + appPath +'consumer/loans/ramdanoffer.asp">Ramadan Offer</a></td> ');
document.write('        </tr> ');
document.write('        <tr> ');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');*/
document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');
document.write(' ');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');
document.write(' ');



//personalbanking - Loans - Mortgage Services
document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_mortgage.startMenuLMortgage());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="120" border="0" class="level3">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write('        <tr> ');
document.write('         <td class="menutext3"><a href="' + appPath +'consumer/loans/mortgagerefinance.asp">Mortgage Refinance</a></td> ');
document.write('        </tr> ');

document.write('        <tr> ');
document.write('         <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');
document.write('        <tr> ');
document.write('         <td class="menutext3"><a href="' + appPath +'consumer/loans/mortgageoverdraft.asp">Mortgages Overdraft</a></td> ');
document.write('        </tr> ');

document.write('        <tr> ');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');
document.write(' ');

//personalbanking - Loans -  Excellency Mortgage Services
document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_excellencymortgage.startMenuEMortgage());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="210" border="0" class="level3">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write('        <tr> ');
document.write('         <td class="menutext3"><a href="' + appPath +'consumer/loans/MortgageServices/excellencymortgage_uae.asp">Excellency Mortgage for UAE Nationals</a></td> ');
document.write('        </tr> ');

document.write('        <tr> ');
document.write('         <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>        ');
document.write('        <tr> ');
document.write('         <td class="menutext3"><a href="' + appPath +'consumer/loans/MortgageServices/excellencymortgage_expt.asp">Excellency Mortgage for Expatriates</a></td> ');
document.write('        </tr> ');

document.write('        <tr> ');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');
document.write(' ');

document.write('       <script type="text/JavaScript">document.write(endMenu());</script>     ');





//personalbanking - credit cards
document.write('       <script type="text/JavaScript">document.write(Menus.personalbanking_creditcards.startMenuCCards());</script> ');
document.write('       <table cellpadding="0" cellspacing="0" border="0" class="level2">      ');

document.write('        <tr> ');
document.write('         <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td> ');
document.write('        </tr>  ');
/*document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="/english/consumer/creditcards/balance_transfer.asp">Balance Transfer  </a></td> ');
document.write('        </tr> ');*/
/*

document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');*/

document.write('         <td class="menutext2"><a href="http://www.justdipthechip.com" target=_blank>Just Dip The Chip  &#8482;</a></td> ');
document.write('        </tr> ');

/*document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');
document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="/english/consumer/creditcards/utilitybillpayments.asp">Utility Bill Payments Promotion </a></td> ');
document.write('        </tr> ');*/

document.write('        </tr> ');
document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');

/*document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="/english/consumer/creditcards/flash.asp">Flash </a></td> ');
document.write('        </tr> ');
document.write('        </tr> ');

document.write('        </tr> ');
document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');*/

document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="/english/consumer/creditcards/smallbusiness.asp">Credit Card for Small Businesses </a></td> ');
document.write('        </tr> ');
document.write('        </tr> ');
document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');

/*document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="/english/consumer/creditcards/visaolympicgames.asp">Visa Olympic Games Offer</a></td> ');
document.write('        </tr> ');
document.write('        </tr> ');
document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');*/

document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="http://www.justdipthechip.com/exclusive_traveler.html" target="_blank">Exclusive Traveler offer</a></td> ');
document.write('        </tr> ');
document.write('        </tr> ');
document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');


document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="/english/consumer/creditcards/lulu_creditcard.asp">ADCB LuLu Credit Card</a></td> ');
document.write('        </tr> ');
document.write('        </tr> ');


document.write('        <tr> ');
document.write('         <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td> ');
document.write('        </tr>  ');

/*document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');
document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="/english/consumer/creditcards/doublespend.asp">Double Spend </a></td> ');
document.write('        </tr> ');
document.write('        </tr> ');*/

/*document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');
document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="/english/consumer/creditcards/summerbonanza.asp">Credit Cards Summer Bonanza</a></td> ');
document.write('        </tr> ');*/

/*document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');

document.write('        <tr> ');
document.write('  <td class="menutext2" onmouseover="hideCur(); Menus.personalbanking_bankoffers.show()" onmouseout="Menus.personalbanking_bankoffers.hide()" ><a href="#">Bank Offers</a><img src="' + appPath +'common/image/generic/navarrow.gif" border="0" alt="" /></td>');
document.write('        </tr> ');*/

/*document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');
document.write(' <tr>');
document.write('  <td class="menutext2" onmouseover="hideCur(); Menus.personalbanking_travel.show()" onmouseout="Menus.personalbanking_travel.hide()" ><a href="#">Exclusive Traveler Offers</a><img src="' + appPath +'common/image/generic/navarrow.gif" border="0" alt="" /></td>');
document.write(' </tr> ');*/

/*document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="180" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');
document.write(' <tr>');
document.write('  <td class="menutext2" onmouseover="hideCur(); Menus.personalbanking_merchant.show()" onmouseout="Menus.personalbanking_merchant.hide()" ><a href="#">Merchant Offers</a><img src="' + appPath +'common/image/generic/navarrow.gif" border="0" alt="" /></td>');
document.write(' </tr> ');*/

/*document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="150" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="/english/consumer/creditcards/securewallet.asp">Wallet Guard</a></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="1" alt="" /></td>');
document.write(' </tr> ');*/


/*document.write('        <tr> ');
document.write('         <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="150" height="1" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');
document.write('        <tr> ');
document.write('         <td class="menutext2"><a href="http://platinumcard.visacemea.com/eng/plt/privileges.asp" target="_blank">Visa Platinum Offers</a></td> ');
document.write('        </tr> ');
document.write('        <tr> ');
document.write('         <td><img src="' + appPath +'common/image/generic/blank.gif" width="150" height="10" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');*/
document.write('       </table> ');

document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_bankoffers.startMenuCBOffers());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="125" border="0" class="level3">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="6" alt="" /></td>');
document.write(' </tr> ');

/*document.write(' <tr>');
document.write('  <td class="menutext3"><a href="/english/consumer/creditcards/LGoffers.asp">Free Gift Offer</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');*/

document.write(' <tr>');
document.write('  <td class="menutext3"><a href="/english/consumer/wealth/Bancassurance.asp">Family Protector Plus</a></td>');
document.write(' </tr>');
/*document.write('  <tr>');
document.write('  <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');*/
/*document.write(' <tr>');
document.write('  <td class="menutext3"><a href="' + appPath +'consumer/creditcards/balancetransfer.asp">Balance Transfer</a></td>');
document.write(' </tr>');*/
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');

document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_travel.startMenuCETOffers());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0" class="level3">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext3"><a href="' + appPath +'consumer/creditcards/exclusivetraveller.asp">Features & Benefits</a></td>');
document.write(' </tr>');

/*document.write('  <tr>');
document.write('  <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext3"><a href="' + appPath +'consumer/creditcards/eidpackages.asp">Special Eid packages </a></td>');
document.write(' </tr>');*/

/*document.write('  <tr>');
document.write('  <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext3"><a href="' + appPath +'consumer/creditcards/austrian_flyer.asp">Austrian Airlines Offer</a></td>');
document.write(' </tr>');*/
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');


document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_merchant.startMenuCMOffers());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0" class="level3">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext3"><a href="http://www.justdipthechip.com/rewards_directory.html" target="_blank">Chip related offers</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext3"><a href="http://www.justdipthechip.com/generic_rewards_directory.html" target="_blank">Special offers</a></td>');
document.write(' </tr>');
/*document.write('  <tr>');
document.write('  <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');*/

/*document.write(' <tr>');
document.write('  <td class="menutext3"><a href="/english/consumer/creditcards/securewallet.asp">Secure Wallet</a></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="1" alt="" /></td>');
document.write(' </tr> ');
document.write('  <tr>');
document.write('  <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');*/

/*document.write(' <tr>');
document.write('  <td class="menutext3"><a href="/english/consumer/etisalat/default.asp">Offer with Etisalat</a></td>');
document.write(' </tr>');*/
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');

document.write('<script type="text/JavaScript">document.write(endMenu());</script>');



//personalbanking - investment
document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_investment.startMenuIServices());</script>');
document.write(' <table cellpadding="0" cellspacing="0" border="0" width="185" class="level2">     ');


/*document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/touchpoints_invest.asp">Touchpoints Investment Promotion</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" /></td>');
document.write(' </tr>     ');*/

document.write('        <tr> ');
document.write('         <td><img src="' + appPath +'common/image/generic/blank.gif" width="150" height="10" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');
document.write(' <tr>');
document.write('  <td class="menutext2" onmouseover="hideCur(); Menus.personalbanking_nokhita.show()" onmouseout="Menus.personalbanking_nokhita.hide()" ><a href="#">Al Nokhitha Fund</a><img src="' + appPath +'common/image/generic/navarrow.gif" border="0" alt="" /></td>');
document.write(' </tr> ');
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" /></td>');
document.write(' </tr>     ');



/*document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/wealth/doublegain.asp">Double Gain Investment</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" /></td>');
document.write(' </tr>     ');*/

/*
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/wealth/excellency-upfront.asp">Excellency Upfront Interest Deposit</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" /></td>');
document.write(' </tr>     ');
*/

document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/wealth/Albashaer.asp">Al Basha\'er Fund</a></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/wealth/MSCIFund.asp">ADCB MSCI UAE Index Fund</a></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/wealth/msciarabianmarkets.asp">ADCB MSCI Arabian Markets<br>&nbsp;&nbsp;Index Fund</a></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/wealth/murshid.asp">Al Murshid </a></td>');
document.write(' </tr> ');
document.write('        <tr> ');
document.write('         <td><img src="' + appPath +'common/image/generic/blank.gif" width="150" height="10" alt="" class="itemsep2" /></td> ');
document.write('        </tr>       ');

document.write(' </table>');





//personalbanking - Investment Services - Al Nokhita
document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_nokhita.startMenuIANokhita());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="125" border="0" class="level3">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext3"><a href="' + appPath +'consumer/wealth/nokhita/localmarket.asp">The&nbsp;Local&nbsp;Market</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext3"><a href="' + appPath +'consumer/wealth/nokhita/nokhita.asp">Al&nbsp;Nokhitha&nbsp;Investment</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext3"><a href="' + appPath +'consumer/wealth/nokhita/future.asp">Plan&nbsp;Your&nbsp;Future</a></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <tr>');
document.write('  <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext3"><a href="' + appPath +'consumer/wealth/nokhita/invest.asp">How&nbsp;to&nbsp;Invest</a></td>');
document.write(' </tr>');
document.write('        <tr> ');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');
document.write(' ');

document.write('       <script type="text/JavaScript">document.write(endMenu());</script>     ');
document.write(' ');

document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_shariah.startMenuSCServices());</script>');
document.write(' <table cellpadding="0" cellspacing="0" border="0" width="218" class="level2" >     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');

/*document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/meethaq-mudarabah.asp">ADCB Meethaq Mudarabah <br>&nbsp; Investment Account</a></td>');
document.write(' </tr> ');
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" /></td>');
document.write(' </tr>     ');*/

/*document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/meethaq-mudarabah-overdraft.asp">ADCB Meethaq Mudarabah <br>&nbsp;&nbsp;Overdraft Facility</a></td>');
document.write(' </tr> ');
document.write(' <tr> ');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" /></td>');
document.write(' </tr>     ');*/

document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/takaful/default.asp">ADCB Meethaq Takaful & Savings <br>&nbsp;&nbsp;Programme for Regular Contributions</a></td>');
document.write(' </tr> ');
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="125" height="1" alt="" /></td>');
document.write(' </tr>     ');

document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/takaful/Lumpsumcontributions.asp">ADCB Meethaq Takaful & Savings<br>&nbsp; Programme for Lumpsum Contributions </a></td>');
document.write(' </tr> ');
document.write(' <tr> ');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td> ');
document.write(' </tr>');

document.write(' </table>');
document.write('       <script type="text/JavaScript">document.write(endMenu());</script>     ');


document.write(' <script type="text/JavaScript">document.write(Menus.personalbanking_privilege.startMenuPrivilege());</script>');
document.write(' <table cellpadding="0" cellspacing="0" border="0" width="218" class="level2" >     ');
document.write(' <tr>');

/*document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/takaful/Lumpsumcontributions.asp">ADCB Meethaq Takaful & Savings<br>&nbsp; Programme for Lumpsum Contributions </a></td>');
document.write(' </tr> ');
document.write(' <tr> ');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td> ');
document.write(' </tr>');*/

document.write(' </table>');
document.write('       <script type="text/JavaScript">document.write(endMenu());</script>     ');


document.write('       <script type="text/JavaScript">document.write(endMenu());</script>     ');
document.write(' ');


//corporate banking
document.write(' <script type="text/JavaScript">document.write(Menus.businessbanking.startMenu());</script>');
document.write(' <table cellpadding="0" cellspacing="0" border="0" width="165" class="level1">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'corporate/financing.asp">Financing</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td class="menutext" onmouseover="hideCur(); Menus.businessbanking_cash.show()" onmouseout="Menus.businessbanking_cash.hide()" ><a href="' + appPath +'corporate/cashmanagement.asp">Cash Management</a><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" /></td>');
document.write(' </tr>');

/*<!--document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'corporate/corporateprocessing.asp">Corporate Processing Centre</a></td>');
document.write(' </tr>');-->*/


document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'corporate/trade.asp">Trade&nbsp;Services</a></td>');
document.write(' </tr> ');
document.write(' <tr>');

document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext" onmouseover="hideCur(); Menus.businessbanking_treasury.show()" onmouseout="Menus.businessbanking_treasury.hide()" ><a href="' + appPath +'corporate/treasury/default.asp">Treasury and Investments</a><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" /></td>');


document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext" onmouseover="hideCur(); Menus.businessbanking_meethaq.show()" onmouseout="Menus.businessbanking_meethaq.hide()" ><a href="#">ADCB Meethaq</a><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" /></td>');
document.write(' </tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');

document.write(' </table>');



//corportae banking - treasury

document.write(' <script type="text/JavaScript">document.write(Menus.businessbanking_treasury.startMenuTreasury());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="100" border="0" class="level2">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'corporate/treasury/default.asp">Overview</a></td>');
document.write(' </tr>');

/*document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="150" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'corporate/treasury/risk-management.asp">Risk Management Solutions</a></td>');
document.write(' </tr>');

document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="100" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'corporate/treasury/investor-products.asp">Investor Products</a></td>');
document.write(' </tr>');

document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="100" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'corporate/treasury/definitions.asp">Definitions</a></td>');
document.write(' </tr>');*/

document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');
document.write(' ');

//corportae banking - meethaq

document.write(' <script type="text/JavaScript">document.write(Menus.businessbanking_meethaq.startMenuMeethaq());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="180" border="0" class="level2">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="7" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'consumer/meethaq-mudarabah-overdraft.asp">ADCB Meethaq Mudarabah <br>&nbsp;&nbsp;Overdraft Facility</a></td>');
document.write(' </tr>');

document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="7" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');
document.write(' ');

//corportae banking - cash management

document.write(' <script type="text/JavaScript">document.write(Menus.businessbanking_cash.startMenuCash());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="150" border="0" class="level2">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="7" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'corporate/escrow.asp">Escrow Account Services</a></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="7" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');
document.write(' ');


document.write(' <script type="text/JavaScript">document.write(endMenu());</script>     ');
document.write('');



// planning tools
document.write(' <script type="text/JavaScript">document.write(Menus.planningtools.startMenu());</script>');
document.write(' <table cellpadding="0" cellspacing="0" border="0" class="level1">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'tools/calculator.asp">Calculators</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write('</table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
document.write(' ');


//investmentbanking
document.write(' <script type="text/JavaScript">document.write(Menus.investmentbanking.startMenu());</script>');
document.write(' <table cellpadding="0" cellspacing="0" border="0" width="135" class="level1">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');

document.write('  <td class="menutext"><a href="' + appPath +'corporate/financial.asp">Financial Institutions</a></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="5" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
document.write(' ');

//customer service
document.write(' <script type="text/JavaScript">document.write(Menus.customerservice.startMenu());</script>');
document.write(' <table cellpadding="0" cellspacing="0" border="0" width="125" class="level1">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="143" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/contactus.asp">Contact&nbsp;Us</a></td>');
document.write(' </tr> ');



document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/onlineapp.asp">Online&nbsp;Application Forms</a></td>');
document.write(' </tr> ');
document.write('  <tr>');
document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/customerupdate.asp">Customer&nbsp;Update&nbsp;Form</a></td>');
document.write(' </tr> ');

/*document.write(' <tr> ');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/onlinebank.asp">Internet&nbsp;Banking</a></td>');
document.write(' </tr> ');*/

document.write(' <tr> ');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/utility.asp">Utility&nbsp;Bill&nbsp;Payments</a></td>');
document.write(' </tr> ');
document.write(' <tr> ');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/lockers.asp">Lockers</a></td>');
document.write(' </tr> ');
document.write(' <tr> ');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/remittances.asp">Remittances</a></td>');
document.write(' </tr> ');
document.write(' <tr> ');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/schedule/default.asp">Schedule&nbsp;of&nbsp;Fees</a></td>');
document.write(' </tr> ');

document.write(' <tr> ');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/terms_condition.asp">Terms&nbsp;&&nbsp;Conditions</a></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
document.write(' ');




//ways to bank
document.write(' <script type="text/JavaScript">document.write(Menus.waystobank.startMenu());</script>');
document.write(' <table cellpadding="0" cellspacing="0" border="0" width="135" class="level1">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext" onmouseover="hideCur(); Menus.waystobank_adcbactive.show()" onmouseout="Menus.waystobank_adcbactive.hide()" ><a href="#">ADCB@ctive  <br/>&nbsp; Internet Banking</a><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr> ');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/e_statement.asp">e-Statement</a></td>');
document.write(' </tr> ');
document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/mobilebanking/mobilebanking.asp">ADCBMobile</a></td>');
document.write(' </tr> ');
document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/branchfinder.asp">Branches</a></td>');
document.write(' </tr> ');
document.write(' <tr> ');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/network.asp">ATM</a></td>');
document.write(' </tr> ');
document.write(' <tr> ');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/ivr.asp">IVR</a></td>');
document.write(' </tr> ');
document.write(' <tr> ');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'customer/contact_centre.asp">Contact Centre</a></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');

//ways to bank - adcbactive
document.write(' <script type="text/JavaScript">document.write(Menus.waystobank_adcbactive.startMenu_ADCBActive());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="100" border="0" class="level2">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="#" onclick="open_win();">Corporate</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="100" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="#" onclick="open_win2();" onmouseover="hideCur(); Menus.waystobank_adcbpersonal.show()" onmouseout="Menus.waystobank_adcbpersonal.hide()" >Personal</a><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" /></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="100" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="/english/onlinebanking/about.asp">About</a></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');


//ways to bank - adcbactive - personal
document.write(' <script type="text/JavaScript">document.write(Menus.waystobank_adcbpersonal.startMenu_ADCBActive());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="100" border="0" class="level3">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext3"><a href="#" onclick="open_win3();">Register</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep3"><img src="' + appPath +'common/image/generic/blank.gif" width="100" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="menutext3"><a href="#" onclick="open_win2();">Login</a></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write(' </table>');

document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');

document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script> ');


//about us menu
document.write(' <script type="text/JavaScript">document.write(Menus.aboutus.startMenu());</script>');
document.write(' <table cellpadding="0" cellspacing="0" width="170" border="0" class="level1">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="130" height="10" alt="" /></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'about/vision.asp">Mission and Vision</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'about/community.asp">Events&nbsp;&amp;&nbsp;Sponsorships</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'about/corp_governance.asp">Corporate Governance</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td class="menutext"><a href="/english/about/common/file/adcb-csr.pdf" target="_blank">Corporate Social Responsibility</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
/*document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'about/awards.asp">Awards</a></td>');
document.write(' </tr>');

document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');*/
document.write(' <tr>');
document.write('  <td class="menutext" onmouseover="hideCur(); Menus.aboutus_inverstorrelations.show()" onmouseout="Menus.aboutus_inverstorrelations.hide()"><a href="' + appPath +'about/reports/overview.asp">Investor&nbsp;Relations</a>&nbsp;&nbsp;<a class="arrow"><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" /></a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext" onmouseover="hideCur(); Menus.aboutus_mediacenter.show()" onmouseout="Menus.aboutus_mediacenter.hide()" ><a href="' + appPath +'about/media/newsroom.asp">Media&nbsp;Center</a>&nbsp;&nbsp;<a class="arrow"><img src="' + appPath +'common/image/generic/navarrow.gif" alt="" /></a></td>');
document.write(' </tr> ');

document.write('  <tr>');
document.write('  <td class="itemsep1"></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext"><a href="' + appPath +'about/careers.asp">Careers</a></td>');
document.write(' </tr>');

document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write('</table>');

//about us - investor relations 
document.write('<script type="text/JavaScript">document.write(Menus.aboutus_inverstorrelations.startMenuAUIRelations());</script>');
document.write('<table cellpadding="0" cellspacing="0" width="95" border="0" class="level2">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'about/reports/overview.asp">Overview</a></td>');
document.write(' </tr> ');
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="95" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr>     ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'about/reports/default.asp">Financial&nbsp;Reports</a></td>');
document.write(' </tr> ');

document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="95" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr>     ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'about/reports/annualreports.asp">Annual&nbsp;Reports</a></td>');
document.write(' </tr> ');

document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write('</table>');
document.write('<script type="text/JavaScript">document.write(endMenu());</script> ');
document.write(' ');



//about us - media center
document.write('<script type="text/JavaScript">document.write(Menus.aboutus_mediacenter.startMenuAUMCenter());</script>');
document.write('<table cellpadding="0" cellspacing="0" width="95" border="0" class="level2">     ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr>');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'about/media/newsroom.asp">PR&nbsp;News</a></td>');
document.write(' </tr> ');

/*document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="110" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'about/media/uaenewsroom.asp">UAE&nbsp;Newsroom</a></td>');
document.write(' </tr> ');*/

/*document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="110" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'news/default.asp?type=albawaba">News&nbsp;in&nbsp;the&nbsp;GCC</a></td>');
document.write(' </tr> ');*/
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="110" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'news/default.asp?type=external">ADCB&nbsp;in&nbsp;the&nbsp;News</a></td>');
document.write(' </tr> ');

/*document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="110" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'news/default.asp?type=reuters">Global&nbsp;Financial&nbsp;News</a></td>');
document.write(' </tr> ');*/

/*document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="110" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'news/default.asp?type=internal">UAE&nbsp;Financial&nbsp;News</a></td>');
document.write(' </tr> ');*/
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="110" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'about/media/brand.asp">Brand&nbsp;Guidelines</a></td>');
document.write(' </tr>');
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="110" height="1" alt="" class="itemsep2" /></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'about/media/presskit.asp">ADCB&nbsp;Press&nbsp;Kit</a></td>');
document.write(' </tr>   ');
document.write('  <tr>');
document.write('  <td class="itemsep2"><img src="' + appPath +'common/image/generic/blank.gif" width="110" height="1" alt="" class="itemsep2" /></td>');

document.write(' </tr>    ');
document.write(' <tr>');
document.write('  <td class="menutext2"><a href="' + appPath +'about/media/awards.asp">Sanad Newsletter</a></td>');
document.write(' </tr> ');
document.write(' <tr>');
document.write('  <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write(' </tr> ');
document.write('</table>');
document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
document.write(' ');

document.write(' <script type="text/JavaScript">document.write(endMenu());</script>');
document.write(' ');

}



/*function publishsidemenu()
{
document.write('            <table cellpadding="0" cellspacing="0" border="0" class="subnav">');
document.write('             <tr>');
document.write('              <td><img src="' + appPath +'common/image/generic/blank.gif" width="190" height="15" alt="" /></td>');
document.write('             </tr>');
document.write('             <tr>');
document.write('              <td class="sidemenutext"><a onmouseover="hideCur(); Menus.investmentbanking.show()" onmouseout="Menus.investmentbanking.hide()" href="#">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Investment Banking</a></td>');
document.write('             </tr>');
document.write('             <tr>');
document.write('              <td class="grey"><img src="' + appPath +'common/image/generic/blank.gif" width="190" height="1" alt="" /></td>');
document.write('             </tr>');
document.write('             <tr>');
document.write('              <td class="sidemenutext"><a href="#">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Financial Institutions</a></td>');
document.write('             </tr>');
document.write('             <tr>');
document.write('              <td class="grey"><img src="' + appPath +'common/image/generic/blank.gif" width="190" height="1" alt="" /></td>');
document.write('             </tr>');
document.write('             <tr>');
document.write('              <td class="sidemenutext"><a href="#">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Commercial Banking</a></td>');
document.write('             </tr> ');
document.write('             <tr>');
document.write('              <td class="grey"><img src="' + appPath +'common/image/generic/blank.gif" width="190" height="1" alt="" /></td>');
document.write('             </tr>');
document.write('             <tr>');
document.write('              <td class="sidemenutext"><a href="#">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Treasury</a></td>');
document.write('             </tr>');
document.write('             <tr>');
document.write('              <td class="grey"><img src="' + appPath +'common/image/generic/blank.gif" width="190" height="1" alt="" /></td>');
document.write('             </tr>');
document.write('             <tr>');
document.write('              <td class="sidemenutext"><a href="#">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Trade Finance</a></td>');
document.write('             </tr> ');
document.write('             <tr>');
document.write('              <td><img src="' + appPath +'common/image/generic/blank.gif" width="190" height="15" alt="" /></td>');
document.write('             </tr>                        ');
document.write('            </table>');
document.write('            <!-- ++END SUB NAVI -->    ');
document.write('            <!-- ++BEGIN SUB NAVI BUILD -->       ');
document.write('            <script type="text/JavaScript">document.write(Menus.investmentbanking.startMenu());</script>');
document.write('            <table cellpadding="0" cellspacing="0" border="0" class="level2">     ');
document.write('             <tr>');
document.write('              <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write('             </tr> ');
document.write('             <tr>');
document.write('              <td class="menutext2"><a href="#">All&nbsp;in&nbsp;One</a></td>');
document.write('             </tr>');
document.write('             <tr>');
document.write('              <td class="itemsep2"></td>');
document.write('             </tr>       ');
document.write('             <tr>');
document.write('              <td class="menutext2"><a href="#">Current&nbsp;/&nbsp;Savings</a></td>');
document.write('             </tr>');
document.write('             <tr>');
document.write('              <td class="itemsep2"></td>');
document.write('             </tr>                ');
document.write('             <tr>');
document.write('              <td class="menutext2"><a href="#">Call&nbsp;Accounts</a></td>');
document.write('             </tr>');
document.write('             <tr>');
document.write('              <td class="itemsep2"></td>');
document.write('             </tr>      ');
document.write('             <tr>');
document.write('              <td class="menutext2"><a href="#">Fixed&nbsp;Deposits</a></td>');
document.write('             </tr>');
document.write('             <tr>');
document.write('              <td class="itemsep2"></td>');
document.write('             </tr>       ');
document.write('             <tr>');
document.write('              <td class="menutext2"><a href="#">Smart&nbsp;Debit&nbsp;Cards</a></td>');
document.write('             </tr>              ');
document.write('             <tr>');
document.write('              <td><img src="' + appPath +'common/image/generic/blank.gif" width="1" height="10" alt="" /></td>');
document.write('             </tr>       ');
document.write('            </table>');
document.write('            <script type="text/JavaScript">document.write(endMenu());</script>                 ');
}*/