function TextSize(id, change, cssftype){
	cssftype="px";	var block = document.getElementById(id);	var font_size = parseInt(document.getElementById(id).style.fontSize);	block.style.fontSize = (font_size +change)+ cssftype;}