<!--
 
 function shout(make,id,nick)
 {
	if(make == 'do')
	{
		document.getElementById('dmusb_txt').className = 'dmusb_input';
		document.getElementById('dmusb_txt').innerHTML ='<form id="formshout" name="formshout" method="post" action="./"><h3>Mein Shout:</h3><input type="text" name="shout" id="shout" class="input" style="width:220px;" id="shout" maxlength="60" /><input type="hidden" name="uid" id="uid" value="'+id+'" /><input type="submit" name="submit_shout" id="submit_shout" value="Shout" class="button" style="margin:5px;"/><a href="#shout" onClick="shout();">Abbrechen</a></form>' ;
		document.getElementById('shout').focus();
		document.getElementById('ashout').style.visibility = 'hidden' ;
		document.getElementById('usershoutname').innerHTML = 'Pssssst ...<br /><br /><strong>'+nick+'</strong><br /> will was schreiben:' ;
		document.getElementById('image').innerHTML = '<img id="imgid" src="../img/public/user/'+id+'.jpg" alt="Kein Bild" width="90" height="72" />' ;
	}
	else
	{
		window.location.href = './' ;
	}
 }
 
-->
