
var urlAddress = "http://www.centralconsultancy.co.uk"; 
var pageName = "Central Consultancy & Training"; 
function addToFavorites() { 

if (window.external) { 
window.external.AddFavorite(urlAddress,pageName) 
} 
else { alert("Sorry! Your browser doesn't support this function."); 
} 
} 

function clickButton(e, buttonid) {

    var key;

    if (window.event)
        key = window.event.keyCode;      //IE
    else
        key = e.which;      //firefox

   
    if (key == 13) {
        //Get the button the user wants to have clicked
        var btn = document.getElementById(buttonid);

        if (btn != null) { //If we find the button click it
           
            btn.click();

           
            return false;

        }
    }



    }
