// JavaScript Document

function CreateBookmarkLink(title,url) {
	if (window.sidebar) window.sidebar.addPanel(title, url,"");
		else if( window.external) window.external.AddFavorite( url, title);
			else if(window.opera && window.print) return true;
	
}

function $(id) { return document.getElementById(id); }

