﻿// JScript File

var url = "http://www.highlifeshop.com"; 
var title = "Buy Cheaper Online with British Airways Highlife Shop - Tax Free Equivalent Shopping"; 

function addBookmark() 
{ 
    if(window.sidebar) 
	{ 
		// Firefox check has to go first, otherwise JS error
		window.sidebar.addPanel(title, url,"");
	}
	else if (window.external) 
	{ 
	    // IE
		window.external.AddFavorite( url, title); 
	} 	 
	else
	{ 
	    // Opera not supported
	    alert("Sorry, this function is not supported. Please use your browser function to add your bookmark.");
    }
} 