//////////////////////////////////////////////
// JavaScript zum Oeffnen des Hauptfensters //
// 05-01-28 by 4in                          //
//////////////////////////////////////////////
function winopen(winurl,br,h) {
  	fenster = window.open(winurl, '', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width='+br+',height='+h+',left=300,top=250');
  	fenster.window.focus();	
}
function winopent(winurl,br,h) {
  	fenster = window.open(winurl, '', 'toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width='+br+',height='+h+',left=300,top=250');
  	fenster.window.focus();	
}
function winopenabg(winurl,br,h) {
  	fenster = window.open(winurl, '', 'toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width='+br+',height='+h+',left=300,top=250');
  	fenster.window.focus();	
}
