// JavaScript Document
function intro(){
	window.open('../intro.htm','intro','status=no,toolbar=no,location=no,scrollbars=no,menu=no,width=500,height=550,resizable=no');
	}

// printen van pagina
function printWindow() {
	bV = parseInt(navigator.appVersion);
	if (bV >= 4) window.print();
}

// openenen van foto in window
function show_pic(imagesrc,winwidth,winheight){
	var look='top=100,left=100,width='+winwidth+',height='+winheight+','
	popwin=window.open("","",look)
	popwin.document.open()
	popwin.document.write('<title>Hippisch Centrum De Warre - Klik op foto om te sluiten</title><body topmargin="0" leftmargin="0"><img src="'+imagesrc+'" onclick="javascript:self.close()"></body>')
	popwin.document.close()
}