/*######################################################################################################
	POPUP.
######################################################################################################*/



function popup(seite)
{
	
	fenster = window.open(seite,"popup","width=400,height=400,menubar=no,toolbar=no,scrollbars=yes,status=no,resizable=yes,location=no,hotkeys=no");
}



/*######################################################################################################
	Layer ein- bzw. ausblenden.
######################################################################################################*/

function showLayer(flag)
{	


	if(flag == true)
		document.getElementById("thumb").style.display = "inline"; 
		
	else if(flag == false)
	{
		document.getElementById(id_off).style.display = "none";
		document.getElementById(id_on).style.display = "inline";
	}
		
	else
		document.getElementById("thumb").style.display = "none";
		
}


/*######################################################################################################
	Bildwechsel
######################################################################################################*/


function changePic(pic_frame, pic)
{
	Zweitbild = new Image();
	Zweitbild.src = "PICS/" + pic;

	window.document.images[pic_frame].src = Zweitbild.src;
}



