function OpenPics(id, iwidth, iheight, salt){
//	window.open ('/image.asp?id='+ id +'&alt='+ salt, 'pics', 'height='+iheight+', width='+ iwidth +', left=125,top=100')
	newWindow = window.open("","newWindow_"+id,"width="+iwidth+",height="+iheight+",left=125,top=100");
	newWindow.document.open();
	newWindow.document.write('<html><title>'+salt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	newWindow.document.write('<a href="javascript:window.close()"><img border="0" src="image.aspx?id='+id+'" alt="'+salt+'"></a>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}


function ValidateSearch(fm)
{
  var err = "";

  if (trim(fm.zoekwoorden.value) == "") { err += "- zoekwoorden.\n"; }

  if (err != "") { 
    window.alert("Vul minimaal één zoekwoord in"); 
    fm.zoekwoorden.value = "";
    return false;

  }
  return true;
}

function trim(value) {
   var temp = value;
   var obj = /^(\s*)([\W\w]*)(\b\s*$)/;
   if (obj.test(temp)) { temp = temp.replace(obj, '$2'); }
   var obj = / +/g;
   temp = temp.replace(obj, " ");
   if (temp == " ") { temp = ""; }
   return temp;
}

function show_htmltitle()
{
	document.getElementById('SectieTitelFlash').style.left = '-5000px';
	document.getElementById('SectieTitelHTML').style.left = '0';
}

function show_flashtitle()
{
	document.getElementById('SectieTitelFlash').style.left = '0';
	document.getElementById('SectieTitelHTML').style.left = '-5000px';
}

function OpenRooster(url)
{
	window.open(url,'rooster','width=800,height=600,location=yes,menubar=yes,toolbar=yes,resizable=yes,scrollbars=yes');
}