function bookmarksite(title, url) {
	if (document.all)
		window.external.AddFavorite(url, title);
	else if (window.sidebar)
		window.sidebar.addPanel(title, url, "");
}

function toogle(divid) {
	var ThisAnswer = document.getElementById(divid);
	if (ThisAnswer.style.display != 'block') {
		ThisAnswer.style.display = 'block';
	} else {
		ThisAnswer.style.display = 'none';
	}
	return true;
}

function show(divid, types) {
	document.getElementById(divid).style.display = types;
}

function hide(divid) {
	document.getElementById(divid).style.display = 'none';
}