/******************************************************************/
/* Quelldatei kaffee.js                                           */
/* Javaskript-Definitionen                                        */
/* Projekt: tango-nuernberg.de                                    */
/* Autor und Copyright: Udo Abadjiev                              */
/* Aktualisiert: 9.11.2003                                        */
/******************************************************************/

function box(thema)
{
text = window.open(thema+".html","BOX","menubar=no,status=no,locationbar=no,width=500,height=200,resizable,scrollbars");
text.focus();
}

function fenster(pfad,hoch,breit)
{
text = window.open(pfad,'BILD',"left=0,top=0,menubar=no,status=no,locationbar=no,width="+breit+",height="+hoch+",resizable,scrollbars");
text.resizeTo(breit,hoch);
text.focus();
}


function textfensterplatz(pfad,id,platz)
{
hoch=870;
if(screen.availHeight < 870) hoch=screen.availHeight;
text = window.open(pfad,id,"menubar=no,status=no,locationbar=no,width=700,height="+hoch+",resizable,scrollbars");
text.location.hash="#"+platz;
text.focus();
}
