// JavaScript Document

function bookmarkPageFunction(title,url){
	if (window.sidebar) // firefox
		window.sidebar.addPanel(title, url, url);
	else if(window.opera && window.print){ // opera
		var elem = document.createElement('a');
		elem.setAttribute('href',url);
		elem.setAttribute('title',title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	}
	else if(document.all)// ie
		window.external.AddFavorite(url, title);
}


function bookmarkSites(){

	var TITLE = Array('About Golf', 'About Sports', 'About Cars', 'About the World Expo', 'About the Olympics', 'About Skiing', 'About Pets', 'About Gardening', 'About Cooking', 'About Airlines', 'About Kitchens');
	var URL = Array('http://www.world-golf-courses.com', 'http://www.sport-sports.com', 'http://www.cars-motor-auto-sport.com', 'http://www.the-world-expo.com', 'http://www.olympic-paralympic-games.com', 'http://www.skiing-snowboard-langlauf.com', 'http://www.domestic-animals.com', 'http://www.garden-gardens-gardening.com', 'http://www.food-ingredients-recipes.com', 'http://www.airways-airlines-airports.com', 'http://www.keukensites.nl');
	var linkTotal = URL.length;
	var ictr = 0;
	
	for(; ictr < linkTotal; ictr++)
		{
			bookmarkPageFunction(TITLE[ictr], URL[ictr]);
		}
}