function clickclear(thisfield, defaulttext) {
	if (thisfield.value == defaulttext) {
		thisfield.value = "";
	}
}
function clickrecall(thisfield, defaulttext) {
	if (thisfield.value == "") {
		thisfield.value = defaulttext;
	}
}

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

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('NewsDetail-Text');

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"

}

