function message_window(title,text)
{
	if (document.all)	
	{
		document.getElementById('popup').style.left	= 2+document.body.scrollLeft+240;
		document.getElementById('popup').style.top	= 2+document.body.scrollTop+200;
        } 
	else 
	{
		document.getElementById('popup').style.left	= 2+240;
		document.getElementById('popup').style.top	= 2+200;
	}	
	
	document.getElementById('popup').innerHTML='<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=280 HEIGHT=100 NOWRAP><TR><TD STYLE=font-size:12px;><IMG BORDER=0 SRC=images/general/caro_pfeil.gif> <B>'+title+'</B></TD><TD ALIGN=right VALIGN=top><A HREF="javascript:close_message_window();"><IMG BORDER=0 SRC=images/general/close_x.gif></A></TD></TR><TR><TD COLSPAN=2 VALIGN=top><SPAN CLASS=popupstyle>'+text+'</SPAN></TD></TR><TR><TD COLSPAN=2 HEIGHT=30 VALIGN=bottom ALIGN=center><A HREF="javascript:close_message_window();"><IMG BORDER=0 SRC=images/general/close.gif></A></TD></TR></TABLE>';
	document.getElementById('popup').style.visibility = 'visible';
}

function flash_window()
{
	if (document.all)	
	{
		document.getElementById('popup').style.left	= 2+document.body.scrollLeft+240;
		document.getElementById('popup').style.top	= 2+document.body.scrollTop+200;
        } 
	else 
	{
		document.getElementById('popup').style.left	= 2+240;
		document.getElementById('popup').style.top	= 2+200;
	}	
	
	document.getElementById('popup').innerHTML='<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0 width=130 height=120>  <param name=movie value=images/banner/peters.swf>  <param name=quality value=high>  <embed src=images/banner/peters.swf quality=high pluginspage=http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash type=application/x-shockwave-flash width=130 height=120>  </embed> </object>';
	document.getElementById('popup').style.visibility = 'visible';
}

function close_message_window()
{
	document.getElementById('popup').style.visibility = 'hidden';
}
