<!--
var popup;
function openStart()
{
	var file 			= 'start.html';
	var name 			= 'Start';
	var options 		= "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0";
	var width 			= (screen.width - 10);
    var height 			= (screen.height - 45);
	//var popup;
	
  	popup = window.open(file, 'name', options + ',width=' + width + ',height=' + height);

	popup.moveTo(1,1);
	
}

function change_picture(pic_id, newpic_name)
{
	document.getElementById(pic_id).src = './images/' + newpic_name;
}

/* ------------------------------------- */

hoverObjects = new Object();
hoverTimers = new Object();

function hover(object, destOp, rate, delta){
if (!document.all)
return
    if (object != "[object]"){  
        setTimeout("hover("+object+","+destOp+","+rate+","+delta+")",0);
        return;
    }
        
    clearTimeout(hoverTimers[object.sourceIndex]);
    
    diff = destOp-object.filters.alpha.opacity;
    direction = 1;
    if (object.filters.alpha.opacity > destOp){
        direction = -1;
    }
    delta=Math.min(direction*diff,delta);
    object.filters.alpha.opacity+=direction*delta;

    if (object.filters.alpha.opacity != destOp){
        hoverObjects[object.sourceIndex]=object;
        hoverTimers[object.sourceIndex]=setTimeout("hover(hoverObjects["+object.sourceIndex+"],"+destOp+","+rate+","+delta+")",rate);
    }
}

function checkIt(id)
{
	if(document.all && !window.opera){
		if(id == 1){
			document.getElementById('spalte1').style.setAttribute("background", "url(./images/5850_text.jpg)", false);
			document.write("<img id='pic1' style='filter:alpha(opacity=100);' onMouseOver='hover(\"pic1\",0,50,5)' onMouseOut='hover(\"pic1\",100,50,5)' src='./images/5850.jpg' width='214' height='179'>")
		}else if(id == 2){
			document.getElementById('spalte2').style.setAttribute("background", "url(./images/5844_text.jpg)", false);
			document.write("<img id='pic2' style='filter:alpha(opacity=100);' onMouseOver='hover(\"pic2\",0,50,5)' onMouseOut='hover(\"pic2\",100,50,5)' src='./images/5844.jpg' width='214' height='179'>")
		}else if(id == 3){
			document.getElementById('spalte3').style.setAttribute("background", "url(./images/seite_10_text.jpg)", false);
			document.write("<img id='pic3' style='filter:alpha(opacity=100);' onMouseOver='hover(\"pic3\",0,50,5)' onMouseOut='hover(\"pic3\",100,50,5)' src='./images/seite_10.jpg' width='214' height='179'>")
		}
	}else{
		if(id == 1){
			document.write("<img id='pic1' onMouseOver='change_picture(\"pic1\",\"5850_text.jpg\")' onMouseOut='change_picture(\"pic1\",\"5850.jpg\")' src='./images/5850.jpg' width='214' height='179'>");
		}else if(id == 2){
			document.write("<img id='pic2' onMouseOver='change_picture(\"pic2\",\"5844_text.jpg\")' onMouseOut='change_picture(\"pic2\",\"5844.jpg\")' src='./images/5844.jpg' width='214' height='179'>");
		}else if(id == 3){
			document.write("<img id='pic3' onMouseOver='change_picture(\"pic3\",\"seite_10_text.jpg\")' onMouseOut='change_picture(\"pic3\",\"seite_10.jpg\")' src='./images/seite_10.jpg' width='214' height='179'>");
		}
	}
}
-->
