function addToFav() {
	var url = location.href;
	var title = document.title;
	if (window.sidebar) { // firefox
		window.sidebar.addPanel(title, url, "");
	} else if (document.all) { // IE
		window.external.AddFavorite(url, title);
	} 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();
  }
}
function showLoad() {
	var obj1 = document.getElementById("result");
	var obj2 = document.getElementById("loading");
	obj1.style.display="none";
	if (document.all) {
		obj2.style.display="block";
	} else {
		obj2.style.display="table";
	}
	//return false;
}