// Open Popups
function openpopup (myfile, myname, breite, hoehe, resizable, scrollbars){
	if (myname == '') myname = 'elch2m';
	if(resizable == null) resizable = '0';
	if(scrollbars == null) scrollbars = '0';
	if(scrollbars == '1')  breite = parseInt(breite) + 22;
	var params = "width=" + breite + ",height=" + hoehe + ",resizable=" + resizable + ",status=0,scrollbars=" + scrollbars + ",toolbar=0,location=0,directories=0,menubar=0";
    var newwin = window.open(myfile ,myname ,params);
		if (newwin) newwin.focus();	
}

//    javascript:openpopup('html/datei.html', 'fenstername', 'breite' , 'hoehe', '0');
