var lastwindow = '';	

function showtext( value )
{
	if ( lastwindow != '' )
	{
		document.getElementById( lastwindow ).className = 'showtextnorm';
		document.getElementById( 'text_' + lastwindow ).style.display = 'none';
	}
	lastwindow = value;
	document.getElementById( value ).className = 'showtextfull';
	document.getElementById( 'text_' + value ).style.display = 'inline';
}


// JavaScript Popup
// Einfach die adressen für die Popups hier unten einfügen
function popup1() {
		F1 = window.open("http://language-connection.de/wortdesmonats.html","WortdesMonats","width=550,height=300,left=150,top=50,scrollbars=yes");
		onfocus="focus()";		
}
