function init()
{
	frm = document.forms[0];
}

function StartSiteSearch()
{
	FilledKeyword = document.getElementById("Keyword") 
	document.location = "/Zoek/Resultaten.asp?Keyword=" + FilledKeyword.value;
	//frm.submit();
}

function SetSearchForm()
{
	frm.action = "/Zoek/Resultaten.asp";
}

function openImageViewer(querystring)
{
	window.open("/internet/imageViewer/viewer.asp?"+ querystring,"","top=0,left=0,width=10,height=10,scrollbars=no");
}

