// JavaScript Document
/*function RO() {
	if (!document.getElementById) return
	var aPreLoad = new Array();
	var sTempSrc;
	var aImages = document.getElementsByTagName('img');
	if (!document.getElementById) return
	var aAll = document.getElementsByTagName('a');
	var ua = navigator.userAgent;
	var url="http://www.wbf.co.jp/";
	var title="ホワイト・ベアーファミリー";
	
	
	ua = ua.toUpperCase();
	if(aAll){
		for (var i = 0; i < aAll.length; i++) {
			aAll[i].onfocus = function() {
				this.blur();	
			}

	if (aAll[i].className == 'bookmark') {
				aAll[i].onclick = 	function addbookmark()
	{
		if (window.sidebar) { // Mozilla, Firefox, Netscape, Safari, etc.
			window.sidebar.addPanel(title, url, "");
		} else if (window.opera && window.print) { // Opera
			return true;
			var elem = document.createElement('a');
			elem.setAttribute('href',url);
			elem.setAttribute('title',title);
			elem.setAttribute('rel','sidebar');
			elem.click();
		} else if (window.external) { // IE
			window.external.AddFavorite(url,title);
		} 
	}
		}
	}
}
*/
function addBookmark(title,url) {
		if (window.sidebar) { // Mozilla, Firefox, Netscape, Safari, etc.
			window.sidebar.addPanel(title, url, "");
		} else if (window.external) { // IE
			window.external.AddFavorite(url,title);
		} else if (window.opera && window.print) { // Opera
			return true;
		}
}
/*
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;
    }
}
*/