
var sidebarurl = "http://www.kidsSocks.com/"; // Change as required
var sidebartitle = "kids Socks : Shop girls socks and boys socks at kidssocks.com"; // Change as required
var url = this.location;
var title = document.title;

function addbookmark() {
	if (window.sidebar && window.sidebar.addPanel){ // Firefox 
		window.sidebar.addPanel(sidebartitle, sidebarurl,"");
	} 
	else if ( document.all ) { // IE Favorite
		window.external.AddFavorite(url, title); 
	}
	else if (window.opera && window.print) {
		// do nothing
 }
	else if (navigator.appName=="Netscape") {
		alert("Please click OK, then press (Ctrl+D) to bookmark this page.");
	}
 }
