function StarOver ( oObj , iStar , iLn ) { aBilder = new Array( '' , '' , '' , '' , '' , '' ); for (var c = 1; c < 6; c++) { aBilder[c] = document.getElementById( 'I'+ iLn +'S'+ c ).src; if ( c > iStar ) { document.getElementById( 'I'+ iLn +'S'+ c ).src = '/_img/star_none.gif'; } else { document.getElementById( 'I'+ iLn +'S'+ c ).src = '/_img/star_glow.gif'; } } } function StarOut ( oObj , iLn ) { /*alert ( aBilder.length );*/ for (var c = 1; c < 6; c++) { document.getElementById( 'I'+ iLn +'S'+ c ).src = aBilder[c]; } } function Rate( sURL ) { window.open( sURL , ' Bewertung abgeben ' , ' width=100, height=100, toolbar=no, ' + 'directories=no, status=no, menubar=no, scrollbars=no, resizable=no ' ) return false; } function PreviewOpen ( iTutPreview ) { for (var c = 1; c < 21; c++) { if ( c == iTutPreview ) { var oObj = document.getElementById( 'P' + c ) if ( oObj ) oObj.style.display = 'block'; } else { var oObj = document.getElementById( 'P' + c ) if ( oObj ) oObj.style.display = 'none'; } } } function WindowResolution ( ) { var aKoordinaten = new Array ( ); if (self.innerHeight) // all except Explorer { aKoordinaten['x'] = self.innerWidth; aKoordinaten['y'] = self.innerHeight; } else if (document.documentElement && document.documentElement.clientHeight) // Explorer 6 Strict Mode { aKoordinaten['x'] = document.documentElement.clientWidth + 22; aKoordinaten['y'] = document.documentElement.clientHeight; } else if (document.body) // other Explorers { aKoordinaten['x'] = document.body.clientWidth + 22; aKoordinaten['y'] = document.body.clientHeight; } return aKoordinaten } function showInlineBox ( iType ) { bInlineBoxVisible = true; var aPos = WindowResolution(); if ( aPos['x'] > 800 ) { var iLeft = ( ( aPos['x'] / 2 ) - 115 ); } else { var iLeft = 300; } var oInlineBox = document.getElementById( 'InlineBox' ); if ( oInlineBox ) { oInlineBox.style.left = iLeft + 'px'; oInlineBox.style.top = '2px'; oInlineBox.style.visibility = 'visible'; } var oInlineBoxContent = document.getElementById( 'InlineBoxContent' ); if ( oInlineBoxContent && iType == 1 ) { oInlineBoxContent.innerHTML = '

Webseite Bookmark / Zu den Favoriten Hinzufügen:
' + 'TutorialStar vormerken: TutorialStar

'; } if ( oInlineBoxContent && iType == 2 ) { oInlineBoxContent.innerHTML = '

Webseite durchsuchen
' + 'In der Navigation finden Sie das Suchfeld mit dem Sie die Suche durchführen können.

'; } if ( oInlineBoxContent && iType == 3 ) { oInlineBoxContent.innerHTML = '

Webseite Hilfe anfordern
' + 'Lesen Sie sich die FAQ oder die allgemeinen Geschäftsbedingungen durch.

'; } if ( oInlineBoxContent && iType == 4 ) { oInlineBoxContent.innerHTML = '

Webseite schliessen
' + 'Die ist nur eine Optische Verzierung und hat keine Funktion.

'; } } var bInlineBoxVisible; function hideInlineBox ( ) { setTimeout("hideInlineBoxC()", 1500); bInlineBoxVisible = false; } function InlineBoxStay ( ) { bInlineBoxVisible = true; } function hideInlineBoxC ( ) { var oInlineBox = document.getElementById( 'InlineBox' ); if ( oInlineBox && bInlineBoxVisible == false ) { oInlineBox.style.visibility = 'hidden'; } } function BookmarkSite( title , url ){ if (window.sidebar) // firefox window.sidebar.addPanel(title, url, ""); else if(window.opera && window.print){ // opera var elem = document.createElement('a'); elem.setAttribute('href',url); elem.setAttribute('title',title); elem.setAttribute('rel','sidebar'); elem.click(); } else if(document.all)// ie window.external.AddFavorite(url, title); }