// Created to have the links on the drop-down menu that opens on the new page
<!--

function LinkUp() 
{
var number = document.quicklinks.menu.selectedIndex;

if(document.quicklinks.menu.value=="/customercentre/index.html"){ //made for customer center to open on the same page. 1 is the index

location.href =document.quicklinks.menu.options[number].value;

}else
window.open(document.quicklinks.menu.options[number].value,target="_blank");

}


// -->