function confirmlink(link,msg) {
if (confirm("Confirm " + msg)) {
	location.replace(link)
	}
}

function OpenWindow(filename, pagename) {
	window.open(filename,pagename,"width=600,height=400,scrollbars=yes");
}

function fontSizer(x) {
	
	var divContent = document.getElementById("content");

	switch (x) {
		case 1 :
			divContent.style.fontSize = "100%";
		break;
		case 2 : 
			divContent.style.fontSize = "150%";
		break;
		case 3 :
			divContent.style.fontSize = "200%";
		break;
	}

}