2019-04 Update Mailversand
Archiv
Auswertung
admin
balance_img
fancybox
images
js
mail
standort
stud
FCKeditor
dyncalendar
images
livesearch
overlib
testFrame-Dateien
BabelFish.js
ajaxcontentmws.js
arrow.gif
calendarmws.js
calendarmws_lang.js
cornerBL.gif
cornerBR.gif
cornerTL.gif
cornerTR.gif
edgeB.gif
edgeL.gif
edgeR.gif
edgeT.gif
exit.gif
flower.gif
iframecontentmws.js
license.html
loading.gif
objectcontentmws.js
oval.gif
overlibCompat.js
overlibConfig.txt
overlibmws.js
overlibmws_bubble.js
overlibmws_crossframe.js
overlibmws_debug.js
overlibmws_draggable.js
overlibmws_exclusive.js
overlibmws_filter.js
overlibmws_function.js
overlibmws_hide.js
overlibmws_iframe.js
overlibmws_modal.js
overlibmws_overtwo.js
overlibmws_print.js
overlibmws_regCore.js
overlibmws_scroll.js
overlibmws_shadow.js
overlibmwslogo.gif
print.gif
pushpin.gif
quotation.gif
semitrans.gif
showCalendar.gif
sprintf.js
square.gif
test.htm
testFrame.html
prints
###antrag.php
#check_aend.php
#index.php
Kopie von antrag_aend.php
ag_standorte.pdf
ag_tage.php
ag_tage_alt.php
ag_tage_neu.php
ag_ubersicht.php
ag_ubersicht_alt.php
ag_ubersicht_neu.php
ajax.js
antrag-mit splitt.php
antrag.php
antrag1.php
antrag2.php
antrag_aend.php
antrag_save.php
bearbeiten.php
bearbeiten1.php
browserSniffer.js
check_aend.php
check_aendantrag.php
check_erstantrag.php
check_splitt_vt.php
check_weitere_daten.php
check_zweig.php
daten_vervollst.php
dynCalendar.css
dynCalendar.js
dyncalendar.php
func_anz_stellen.php
func_anz_stellen.txt
func_check_aend.php
func_check_vertiefungsbereich.php
func_get_block.php
func_pflichtfelder.php
func_pflichtfelder_2019-02-20.php
func_vertiefungsbereich.php
gesamtcheck.php
hauptframe.php
hinweis_aend.php
index - Kopie.php
index.php
index_db.php
index_frame.htm
index_ldap.php
kennwortwechsel.php
livesearch.php
logout.php
menuframe.php
pers_daten_ver.php
status_aend.php
test.php
test1.php
test2.php
text-expand.php
topframe.php
wunschort.php
#pdf_gen.php
#pdf_gen_alt.php
#pdf_gen_ges_lubu.php
#pdf_gen_kehl.php
#pdf_gen_kehl_alt.php
#pdf_gen_kehl_neu.php
#pdf_gen_neu.php
++ Printqueue zurücksetzen.txt.lnk
.gitignore
Auswertung_besuchte Stellen der Studs - alle Jahrgänge.sql
Auswertung_besuchte Stellen der Studs.sql
Pflicht.sql
Trigger.sql
VIEW_stan_zuw_so.sql
VIEW_stan_zuw_so_neu.sql
anz_anm.php
bearbeiten_neu.php
historie.php
historie_alt.php
historie_neu.php
index.php
index_db.php
index_ldap.php
ldap_info.php
ldap_info_hsnet.php
login.css
menuframe.php
styles_pc.css
test.html
umzugsverguetung.sql
31 lines
1.3 KiB
JavaScript
Executable File
31 lines
1.3 KiB
JavaScript
Executable File
////////////////////////////////////////////////////////////////////////////////////
|
|
// OVERLIB 2 COMPATABILITY FUNCTIONS
|
|
// Include this if you are upgrading from overlib v2.x. Otherwise, forget it.
|
|
////////////////////////////////////////////////////////////////////////////////////
|
|
// Converts old 0=left, 1=right and 2=center into constants.
|
|
function vpos_convert(d){if(d==0){d=LEFT;}else{if(d==1){d=RIGHT;}else{d=CENTER;}}return d;}
|
|
// Simple popup
|
|
function dts(d,text){o3_hpos=vpos_convert(d);overlib(text,o3_hpos,CAPTION,"");}
|
|
// Caption popup
|
|
function dtc(d,text,title){o3_hpos=vpos_convert(d);overlib(text,CAPTION,title,o3_hpos);}
|
|
// Sticky
|
|
function stc(d,text,title){o3_hpos=vpos_convert(d);overlib(text,CAPTION,title,o3_hpos,STICKY);}
|
|
// Simple popup right
|
|
function drs(text){dts(1,text);}
|
|
// Caption popup right
|
|
function drc(text,title){dtc(1,text,title);}
|
|
// Sticky caption right
|
|
function src(text,title){stc(1,text,title);}
|
|
// Simple popup left
|
|
function dls(text){dts(0,text);}
|
|
// Caption popup left
|
|
function dlc(text,title){dtc(0,text,title);}
|
|
// Sticky caption left
|
|
function slc(text,title){stc(0,text,title);}
|
|
// Simple popup center
|
|
function dcs(text){dts(2,text);}
|
|
// Caption popup center
|
|
function dcc(text,title){dtc(2,text,title);}
|
|
// Sticky caption center
|
|
function scc(text,title){stc(2,text,title);}
|