﻿<!--
function openPopup(url,w,h) {
  var parString ="width=" + w + ",height=" + h + ",toolbar=0,location=0"
  + ",directories=0,status=0,menubar=0"
  + ",scrollbars=1,resizeble=0";
  var winPop = window.open(url, "", parString);
}
function prevNewsletter() {
  //escape functie nodig voor het weergeven van harde returns !!!
  var test = escape(document.toevoegen.message.value);
  var titel = escape(document.toevoegen.title.value);
  openPopup("preview.php?message="+ test + "&title=" + titel,567,300);
}
-->
