/*
    DIESER CODE UNTERLIEGT DEM URHEBERRECHT
    THIS CODE IS COPYRIGHT PROTECTED

    COPYRIGHT:
    FRANK GEBHARD
    CPEACH - INTERNETDIENSTLEISTUNGEN
    KASTANIENALLEE 40
    38104 BRAUNSCHWEIG, GERMANY
    info@cpeach.de

    Erstellt 30/05/2007
*/
var infoWindowVisibility=false;

function ausfahrt(var1, var2)
{
    //BLENDET DIE INFOBOX EIN UND AUS
    obj= document.getElementById(var1);
    if(infoWindowVisibility==false)//EINBLENDEN
    {
        intern = var1;
        iStopPoint = var2;
        xpos = parseInt(obj.style.left);
        breite = parseInt(obj.style.width);
        tempo = breite/20;
        if (xpos <= iStopPoint)
        {
            xpos= xpos+tempo;
            obj.style.left=xpos;
            window.setTimeout('ausfahrt(intern,iStopPoint)',1);
        }
        else
        {
            infoWindowVisibility=true;
        }
    }
	else//AUSBLENDEN
	{
	    intern = var1;
	    xpos = parseInt(obj.style.left);
	    breite = parseInt(obj.style.width);
	    tempo = breite/20;
	    breite = (-1)*(breite);
	    if (xpos >= breite)
	    {
	        xpos= xpos-tempo;
	        obj.style.left=xpos;
	        window.setTimeout('ausfahrt(intern)',1);
	    }
	    else
	    {
	    	infoWindowVisibility=false;
	    }
	}
}

function hidePic()
{
    document.getElementById('maxDiv').style.visibility="hidden";
    document.getElementById('maxPic').style.visibility="hidden";
    document.getElementById('maxPic').src="media/main/transparent.gif";
}

function maxPic(obj)
{
    /* EINBLENDEN DES BILDES IN 1034.php (=top) */
    //EXTRAKTION DER IMG-SRC
    picLink=obj.src.slice(0,obj.src.length-4)+"xl.jpg";
    top.document.getElementById('maxPic').src=picLink;
    top.document.getElementById('maxDiv').style.visibility="visible";
    top.document.getElementById('maxPic').style.visibility="visible";
}
