function addBookmark(title,url) {
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,""); 
	} else if( document.all ) {
		window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
		return true;
	}
}

function openWindow(url,name,width,height) {
	window.open(url,name,'width='+width+', height='+height+', top=10, left=10');
}