%HEADER%
<style type="text/css">
body, p, div, td {font-family: %FONTFAMILY%; font-size: %FONTSIZE%px; color: #%FONTCOLOR%}
a.links {text-decoration : %TEXTDEKOLINKS%}
a.links:link { color: #%LINK%}
a.links:visited { color: #%LINK%}
a.links:active { color: #%LINKACTIVE%}
a.links:hover {color: #%LINKHOVER%}
a.links_eintrag {text-decoration : %TEXTDEKOLINKSEINTRAG%}
a.links_eintrag:link { color: #%LINKEINTRAG%}
a.links_eintrag:visited { color: #%LINKEINTRAG%}
a.links_eintrag:active { color: #%LINKEINTRAGACTIVE%}
a.links_eintrag:hover {color: #%LINKEINTRAGHOVER%}
img.autofit { max-width:%BILDERMAXBREITE%px; }
</style>
<!--[if lt IE 7]>
<style type="text/css">
img.autofit { width:expression(this.complete ? Math.min(this.offsetWidth,%BILDERMAXBREITE%)+"px" : false); }
</style>
<![endif]-->
<script type="text/javascript">
function popup(url)
{
msgWindow=window.open(url,"Administration","toolbar=no,width=820,height=620,directories=no,status=yes,scrollbars=no,resize=no,menubar=no,marginwidth=0,marginheight=0,top=100px,left=100px")
}
function PopupPrint(url)
{
msgWindow=window.open(url,"Administration","toolbar=no,width=600,height=400,directories=no,status=yes,scrollbars=no,resize=no,menubar=no,marginwidth=0,marginheight=0,top=100px,left=100px")
}
function PopupCaptcha(url)
{
msgWindow=window.open(url,"Administration","toolbar=no,width=400,height=300,directories=no,status=yes,scrollbars=no,resize=no,menubar=no,marginwidth=0,marginheight=0,top=100px,left=100px")
}
var aktives_form;
var aktives_feld;
function insert(aTag, eTag, form, feld)
{
var input = document.forms[form].elements[feld];
input.focus();
/* für Internet Explorer */
if(typeof document.selection != 'undefined')
{
/* Einfügen des Formatierungscodes */
if(aTag=="[URL]")
{
var linkText = prompt("Bitte fügen Sie Ihren Linktext ein / Please enter your Linktext:","");
var insText = prompt("Bitte fügen Sie Ihre URL ein (ohne http://) / Please enter your URL (without http://):","");
var range = document.selection.createRange();
if(linkText!=null)
range.text = aTag+"http://"+insText+"[/URL2]"+linkText + eTag+" ";
}
else if(aTag=="[MAIL]")
{
var linkText = prompt("Bitte fügen Sie Ihren Beschreibungstext ein / Please enter your Descriptiontext:","");
var insText = prompt("Bitte fügen Sie die Mailadresse ein / Please enter the Mailadress:","");
var range = document.selection.createRange();
if(linkText!=null)
range.text = aTag+insText+"[/MAIL2]"+linkText + eTag+" ";
}
else if(aTag=="[IMG]")
{
var insText = prompt("Bitte fügen Sie Ihre URL zu dem Bild ein (ohne http://) / Please enter your URL of the picture (without http://):","");
var range = document.selection.createRange();
if(insText!=null)
range.text = aTag+"http://"+insText + eTag+" ";
}
else
{
var insText = prompt("Bitte fügen Sie Ihren Text ein / Please enter your Text:","");
var range = document.selection.createRange();
if(insText!=null)
range.text = aTag + insText + eTag+" ";
}
/* Anpassen der Cursorposition */
range = document.selection.createRange();
if (insText.length == 0)
range.move('character', eTag.length);
else
range.moveStart('character', aTag.length + insText.length + eTag.length+" ");
range.select();
}
/* für neuere auf Gecko basierende Browser */
else if(typeof input.selectionStart != 'undefined')
{
/* Einfügen des Formatierungscodes */
var start = input.selectionStart;
var end = input.selectionEnd;
//var insText = input.value.substring(start, end);
if(aTag=="[URL]")
{
var insText = prompt("Bitte fügen Sie Ihren Linktext ein / Please enter your Linktext:","");
var linkText = prompt("Bitte fügen Sie Ihre URL ein (ohne http://) / Please enter your URL (without http://):","");
aTag=aTag+"http://"+linkText+"[/URL2]";
}
else if(aTag=="[MAIL]")
{
var insText = prompt("Bitte fügen Sie Ihren Beschreibungstext ein / Please enter your Descriptiontext:","");
var linkText = prompt("Bitte fügen Sie die Mailadresse ein / Please enter the Mailadress:","");
aTag=aTag+linkText+"[/MAIL2]";
}
else if(aTag=="[IMG]")
{
var insText = prompt("Bitte fügen Sie Ihre URL zu dem Bild ein (ohne http://) / Please enter your URL of the picture (without http://):","");
}
else
{
var insText = prompt("Bitte fügen Sie Ihren Text ein / Please enter your Text:","");
}
if(insText!=null)
input.value = input.value.substr(0, start) + aTag + insText + eTag +" "+ input.value.substr(end);
/* Anpassen der Cursorposition */
var pos;
if (insText.length == 0)
pos = start + aTag.length;
else
pos = start + aTag.length + insText.length + eTag.length;
input.selectionStart = pos;
input.selectionEnd = pos;
}
/* für die übrigen Browser */
else
{
/* Abfrage der Einfügeposition */
var pos=input.value.length;
if(aTag=="[URL]")
{
var insText = prompt("Bitte fügen Sie Ihren Linktext ein / Please enter your Linktext:","");
var linkText = prompt("Bitte fügen Sie Ihre URL ein (ohne http://) / Please enter your URL (without http://):","");
aTag=aTag+linkText+"[/URL2]";
}
else if(aTag=="[MAIL]")
{
var insText = prompt("Bitte fügen Sie Ihren Beschreibungstext ein / Please enter your Descriptiontext:","");
var linkText = prompt("Bitte fügen Sie die Mailadresse ein / Please enter the Mailadress:","");
aTag=aTag+linkText+"[/MAIL2]";
}
else if(aTag=="[IMG]")
{
var insText = prompt("Bitte fügen Sie Ihre URL zu dem Bild ein (ohne http://) / Please enter your URL of the picture (without http://):","");
}
else
{
var insText = prompt("Bitte fügen Sie Ihren Text ein / Please enter your Text:","");
}
/* Einfügen des Formatierungscodes */
if(insText!=null)
input.value = input.value.substr(0, pos) + aTag + insText + eTag +" "+ input.value.substr(pos);
}
}
function ZusatzdatenKlappen(id)
{
if(document.getElementById("WeitereDaten_"+id).style.display=="none")
document.getElementById("WeitereDaten_"+id).style.display="block";
else
document.getElementById("WeitereDaten_"+id).style.display="none";
}
var standardFontSize=%FONTSIZE%;
function FontSizePlus(id)
{
document.getElementById(id).style.fontSize="150%";
}
function FontSizeNormal(id)
{
document.getElementById(id).style.fontSize="100%";
}
</script>
<a name="oben"></a>
<div id="aussenrahmen" style="margin:0px;clear:both;%RAHMENSTYLE%">
<p align="%AUSRICHTUNGTITEL%" style="margin:0px;padding:0px;padding-bottom:20px;padding-top:10px">
%TITELTOP%
</p>
<div id="formular" style="display:%FORMULARDISPLAY%;clear:both;padding:0px;margin:0px">
%FORMULAR%
</div>
<div id="eintragenLink" style="display:%INSGBEINTRAGENDISPLAY%;width:100%;text-align:center;clear:both;padding:0px;margin:auto">
%INSGBEINTRAGENLINK%
</div>
<div id="statistik" align="%AUSRICHTUNGSTATISTIK%" style="display:%STATISTIKDISPLAY%;width:100%;padding:0px;margin:0px;padding-top:20px;padding-bottom:10px">
<b>%ANZAHLEINTRAEGE%</b> %EINTRAEGE% %AUF% <b>%ANZAHLSEITEN%</b> %SEITEN% %AKTUELLESEITETEXT% <b>%AKTUELLESEITE%</b>
</div>
<div id="blaettern1" align="center" style="display:%BLAETTERNDISPLAY%;width:100%;clear:both;padding:0px;margin:0px;padding-bottom:10px">
%BLAETTERFUNKTION%
</div>
<div id="beitraege" style="display:%BEITRAGDISPLAY%;width:100%;clear:both;padding:0px;margin:0px;">
%BEITRAEGE%
</div>
<div id="blaettern2" align="center" style="display:%BLAETTERNDISPLAY%;width:100%;text-align:center;clear:both;padding:0px;margin:0px;">
%BLAETTERFUNKTION%
</div>
<div id="cleaner" align="center" style="width:100%;text-align:center;clear:both;margin:0px;padding:0px;padding-top:15px">
<p style="margin:0px;padding:0px;line-height:140%;margin-bottom:20px;padding-top:0px;font-size:10px">
%FUSS%
</p>
</div>
</div>
%SMILIESANZEIGEN%
%FOOTER%