function changePoliceSize(p_action) {
	var obj = document.getElementById("ctn_tozoom");
	
	if (obj) {
		if (obj.style.fontSize == '')
			obj.style.fontSize = "11%";
		
		
		if (p_action == '+') {
			if (parseInt(obj.style.fontSize) < 17)
				obj.style.fontSize = (parseInt(obj.style.fontSize) + 2)+'px';
		} else {
			if (parseInt(obj.style.fontSize) > 7)
				obj.style.fontSize = (parseInt(obj.style.fontSize) - 2)+'px';
}

}
try {
if (SetLiSizeInit != null) SetLiSizeInit();
} 
catch(e){
return false;
}
	return false;
}

function impression() {window.print();}







