var thispage = location.href;
var currentsize = 0;
//var currsize = document.body.style.fontSize;


function changeSizeUp() {
		document.body.style.fontSize=currsize*1.2;
}

function changeSizeDown() {
		document.body.style.fontSize=currsize*9;
}

function changeSize() {
	var lnk=document.getElementById("textsizechange")
	if (currentsize == 0) {
		document.body.style.fontSize='100%'; 
		currentsize = 1; 
		lnk.style.backgroundImage="url(img/css/font_iconB.gif)"; 
		}
	else if (currentsize == 1){
		document.body.style.fontSize='120%'; 
		currentsize = 2; 
		lnk.style.backgroundImage="url(img/css/font_iconC.gif)"; 
		}
	else {
		document.body.style.fontSize='75%'; 
		currentsize = 0; 
		lnk.style.backgroundImage="url(img/css/font_iconA.gif)"; 
		} 
//	if (currentsize == 0) {
//		document.body.style.fontSize='110%'; currentsize = 1; }
//	else if (currentsize == 1){
//		document.body.style.fontSize='120%';	currentsize = 2; }
//	else {
//		document.body.style.fontSize='100%'; 	currentsize = 0; } 
}

function pop(action, args, title, options) { 
    window.open('utilEmail.aspx?action=' +  action + args + thispage, title, options); 
}

function printThisPage() {
	if (window.print != null) { 
 		window.print(); }
 	else {
 		alert("Please select the Print option from the File menu or press 'Control P' as your browser doesn't support this option");} 
}
