function goTo(url)
{
	location.href = url;
}

function naviback()
{
	history.back();
}

function voorLadenImage()
{
	var laadImages = new Array();
	laadImages["backgr"] 		= new Image();
	laadImages["backgr"].src	= "../images/body_back_org.jpg";
}


function effectRollOver(elm , col)
{
	var obj = document.getElementById(elm);
	obj.style.color = col;
}

function effectRollOut(elm , col)
{
	var obj = document.getElementById(elm);
	obj.style.color = col;
}

function PrintContent(id)
{
	var DocumentContainer = document.getElementById(id);
	var WindowObject = window.open('', "TrackHistoryData", 
						  "width=500,height=325,top=200,left=250,toolbars=no,scrollbars=yes,status=no,resizable=no");
	WindowObject.document.writeln(DocumentContainer.innerHTML);
	WindowObject.document.close();
	WindowObject.focus();
	WindowObject.print();
	WindowObject.close();
}

/* fsi = font size item */
function changeFontSize(fsi)
{
	var objFS = document.getElementById('mnBody');
	var item = fsi;
	
	if(item == "a")
	{
		objFS.style.fontSize = "100%";
	}
	if(item == "b")
	{
		objFS.style.fontSize = "110%";
	}
	if(item == "c")
	{
		objFS.style.fontSize = "120%";
	}
	
}
		
	
