function fnTextSize(textSize) {											
	document.body.className = textSize;			
	var menuLinks = document.getElementById("menu").getElementsByTagName("A");
	for(i=0;i<menuLinks.length;i++) {
		menuLinks[i].href = menuLinks[i].href.split("?")[0]+"?tSize="+textSize;
	}			
} 

function fnPrint() {	
	window.print();			
}

function fnBodyId(newID) {	
	document.body.id = newID;		
}

function FormPopup(url,target,height,width,attributes)
{
	var sScreenX = screen.width
	var sScreenY = screen.height
	var x = sScreenX - width
	var y = sScreenY - height
	var winLeft = x
	var winTop =  0 
		
 	new_window = window.open(url, target,"height=" + height + ",width=" + width + "," + attributes + ",left=" + winLeft + ",top=" + winTop);
 	if (window.focus) {new_window.focus()};
 	window.name = "main";
 	return false;
}

function OpenInMain(url) {
	window.open(url,'main');
}
