function popupWin() {
text =  "<html>\n<head>\n<title>Help ons mee!</title>\n<body>\n";
text += "<center>\n";
text += "<h4>Laat ons weten hoe u onze website ervaart. Klik <a href='http://www2.surveyworld.net/sw/surveys/part.asp?S=3850&Anonymous=1&L=2&R=0&H=08EB383F33B0A1B96C1E12C24E9BBD56BF03A837' target='_blank'>hier </a> of op de donkere Survey button op de homepage. Het kost u maar 2 minuten. <br>Alvast dank!</h4>";
text += "</center>\n</body>\n</html>\n";
setTimeout('windowProp(text)', 3000); 		// delay 3 seconds before opening
}
function windowProp(text) {
newWindow = window.open('','newWin','width=250,height=150');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 120000);	// delay 5 seconds before closing
}
function closeWin(newWindow) {
newWindow.close();				// close small window and depart
}
//  End -->