function popup(URL, TITEL, HOOG, BREED) {
	var top = ((screen.height - HOOG) / 2); 
	var left = ((screen.width - BREED) / 2); 
	mywin=open('','naam','width='+BREED+', height='+HOOG+',top='+top+',left='+left);
	mywin.document.open();
	mywin.document.write("<html><head><title>"+TITEL+"</title></head>");
	mywin.document.write("<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");	
	mywin.document.write("<a href='javascript:window.close()'><img src="+URL+" border=0 alt=''></a>");
	mywin.document.write("</body></html>");
	mywin.document.close();
}

var defaultstatus = " » La Zeloise";
window.status= defaultstatus;

function statusmsg(msgStr) {
  status=" » "+msgStr;
  if (msgStr == "old")
  status=defaultstatus;
}