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";
}
/* header bepalen */
function addheader()
{
	var objheader 		= document.getElementById('elmHeader');
	var objValheader	= document.getElementById('elmValHeader');
	//alert(objheader.style.backgroundImage );
	objheader.style.backgroundImage ="url(http://www.oudevrijheid.nl/images/header/"+objValheader.value+")";
}

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=620,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();
}


	
	
	
	
	
	
