
function openwin(url, breite, hoehe)
{

 var popup;
 var params;

 params = "scrollbars=yes,resizable=yes,menubar=no,location=no,width="+breite+",height="+hoehe;
 popup = window.open(url, "win", params);
 popup.focus();
}

