///////////////////////////////////////////////////////////////////
/*Site Logo Script (Geocities Watermark)
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and TOS, visit http://www.dynamicdrive.com/ */
///////////////////////////////////////////////////////////////////

//edit the below 5 steps

// 1) substitute 116 and 42 with the width and height of your logo image, respectively
var logowidth=145
var logoheight=145
var logoimage=new Image(logowidth,logoheight)

// 2) change the image path to reflect the path of your logo image
logoimage.src="riesenrad.gif"

// 3) Change url below to the target URL of the logo
var logolink="http://kirmes-is.com"

// 4) change the alttext variable to reflect the text used for the "alt" attribute of the image tag
var alttext="Startseite"

// 5) Finally, below variable determines the duration the logo should be visible after loading, in seconds. If you'd like the logo to appear for 20 seconds, for example, enter 20. Entering a value of 0 causes the logo to be perpectually visible. 
var visibleduration2=0

// Optional parameters
var Hoffset2=5 //Enter logo's offset from left edge of window (edit only if you don't like the default offset)
var Voffset2=160//Enter logo's offset from top edge of window (edit only if you don't like the default offset)


///////////////////////////Do not edit below this line/////////////////////////

var ie2=document.all&&navigator.userAgent.indexOf("Opera")==-1

var watermark_obj2=ie2? document.all.navcontainer : document.getElementById? document.getElementById("navcontainer") : document.navcontainer



function positionit2(){
var dsocleft2=ie2? document.body.scrollLeft : pageXOffset
var dsoctop2=ie2? document.body.scrollTop : pageYOffset

if (ie||document.getElementById){
watermark_obj2.style.left=parseInt(dsocleft2)+5+Hoffset2
watermark_obj2.style.top=parseInt(dsoctop2)+5+Voffset2
watermark_obj2.style.top2=parseInt(dsoctop2)+160+Voffset2
topposi=watermark_obj2.style.top2
}
else if (document.layers){
watermark_obj2.left=dsocleft2+5+Hoffset2
watermark_obj2.top=dsoctop2+5+Voffset2
watermark_obj2.top2=dsoctop2+160+Voffset2
topposi=watermark_obj2.top2

}
}

function hidewatermark2(){
if (document.layers)
watermark_obj2.visibility="hide"
else
watermark_obj2.style.visibility="hidden"
clearInterval(watermarkinterval2)
}

function beingwatermark2(){
watermarkinterval2=setInterval("positionit2()",50)
if (visibleduration2!=0)
setTimeout("hidewatermark2()",visibleduration2*1000)


}





