function BilderVorladen()
{
    document.Vorladen = new Array();

    if(document.images)
    {
        for(var i = 0; i < BilderVorladen.arguments.length; i++)
        {
            document.Vorladen[i] = new Image();
            document.Vorladen[i].src = BilderVorladen.arguments[i];
        }
    }
}

var message="";
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;
};



function Fenster01(bildurl,bb,bh,wb,wh) {
var eigenschaft,sbreite,shoehe,fenster,wb,wh;
x = 0;
y = 0;
eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+wb+",height="+wh+",menubar=no,toolbar=no,scrollbars=no,resizable=no";
fenster=window.open("","",eigenschaften);
fenster.focus();
fenster.document.open();
with (fenster) {
  document.write('<html><head>');
  document.write('<title>Damino GmbH</title></head>');
  document.write('<body onblur="()" ');
  document.write('marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">');
  document.write('<center>');
  document.write('<img src="'+ bildurl +'"border="0" width="'+bb +'" height="'+ bh +'" border="0" alt="">');
  document.write('</body></html>');
  fenster.document.close();
}
};


function openWin(url, windowname) {
newWin=window.open(url, windowname, "scrollbars=no,width=492,height=460");
newWin.focus()
}

//*****************************************
// Blending Image Slide Show Script- 
// © Dynamic Drive (www.dynamicdrive.com)
// For full source code, visit http://www.dynamicdrive.com/
//*****************************************

//specify interval between slide (in mili seconds)
var slidespeed=3000

//specify images
var slideimages=new Array("images/1004.jpg","images/2004.jpg","images/3004.jpg","images/4004.jpg","images/5004.jpg")

var newwindow=0 //open links in new window? 1=yes, 0=no

var imageholder=new Array()
var ie=document.all
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
if (newwindow)
window.open(slidelinks[whichlink])
else
window.location=slidelinks[whichlink]
}

//-->


