function AddFav()
{
	if (document.all)
		window.external.AddFavorite(location.href, document.title);
	else if (window.sidebar)
		window.sidebar.addPanel(document.title, location.href, "")
}

var min=10;
var max=24;
function increaseFontSize() {
var p = document.getElementById('Content');

if(p.style.fontSize) {
var s = parseInt(p.style.fontSize.replace("px",""));
} else {
var s = 10;
}
if(s!=max) {
s += 2;
}
p.style.fontSize = s+"px"

}
function decreaseFontSize() {
var p = document.getElementById('Content');

if(p.style.fontSize) {
var s = parseInt(p.style.fontSize.replace("px",""));
} else {
var s = 10;
}
if(s!=min) {
s -= 2;
}
p.style.fontSize = s+"px"

}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}




