// Functie om venster te printen 

// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header

function printWindow()
	{
   	bV = parseInt(navigator.appVersion)
   	if (bV >= 4) window.print()
	}

// Ere wie ere toekomt: 
// Geschreven door Ian Lloyd. 
// http://www.accessify.com/features/tutorials/the-perfect-popup/
//

// Toepassing: <a href="../../js/index.htm" onclick="popUp(this.href,'console',713,1014);return false;" target="newWin">hier</a>

function popUp(strURL,strType,strHeight,strWidth) 
	{
	var strOptions="";
		
		if (strType=="console") strOptions="resizable,scrollbars,left=0,top=0,height="+strHeight+",width="+strWidth;
		if (strType=="console_actie") strOptions="resizable,scrollbars,left=100,top=100,height="+strHeight+",width="+strWidth;
		if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
		if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;

	window.open(strURL, 'newWin', strOptions);
	}
	

// Functie		: maakDatum()
// Toepassing	: document.write(maakDatum(new Date()));

maanden	=	new Array("januari","februari","maart","april","mei","Juni","juli", "augustus","september","oktober","november","december")
dagen	=	new Array("zondag","maandag","dinsdag","woensdag","donderdag", "vrijdag","zaterdag")

function maakDatum(datum)
{ 
  	var dag=dagen[datum.getDay()];
  	var maand=maanden[datum.getMonth()];
  	var jaar=datum.getFullYear();
  	var datumstring=dag+' '+ datum.getDate() + ' ' + maand + ' ' + jaar

  	return datumstring;
}


	

