// Copyright UK Internet Sites Limited

function BookmarkSite() {

title = "UK Football Shops";
url = location.href;

var done = 0;

if (window.sidebar) { // Mozilla Firefox Bookmark
window.sidebar.addPanel(title, url,"");
done = 1;
} else if( window.external ) { // IE Favorite
window.external.AddFavorite( url, title);
done = 1;
}else if(window.opera && window.print) { // Opera Hotlist	
return true;
done = 1;
}

if (! done){
alert("Sorry. Netscape and Mac Safari users must bookmark the pages manually by hitting <Ctrl-D>");
}

}
