function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
function increaseFontSize(){
	var strCss = getCookie("RLcss");
	switch(strCss){
		case "Small":
			SetStyle("Medium");
		break;
		case "Medium":
			SetStyle("Large");
		break;
	}
	
}
function decreaseFontSize(){
	var strCss = getCookie("RLcss");
	switch(strCss){
		case "Medium":
			SetStyle("Small");
		break;
		case "Large":
			SetStyle("Medium");
		break;
	}
}
function setMediumFontSize(){
	SetStyle("Medium");
}
