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=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();
}

function jumpAdvanced()
{
	d = document;
	location = d.frmSearchAdv.selectAdvanced.options[d.frmSearchAdv.selectAdvanced.selectedIndex].value;
}


	
	
	
	
	
	
