function printWin(url) {
  Fenster = window.open(url, "Print", "toolbar=no,scrollbars=yes,status=no,menue=no,resizable=no,width=756,height=400,left=100,top=200");
  Fenster.focus();
}
function sendWin(url) {
  Fenster = window.open(url, "Send", "toolbar=no,scrollbars=yes,status=no,menue=no,resizable=yes,width=436,height=290,left=300,top=200");
  Fenster.focus();
}

function resize(layer, klasse) {
  document.getElementById(layer).className = klasse;
}