// Algemene JavaScriptfuncties
// (c) Tim Deibel - 2008/02/28
//
function openWin(win,w,h) {
  newWin = open(win, "", "resizable=yes,scrollbars=yes,alwaysRaised=yes,width="+w+",height="+h);
}
function setWinSize(w,h) {
	window.resizeTo(w,h);
}
function emailAddr(name,address) {
	location.href = 'mailto:'+name+'@'+address;
}
