/**
 * Methods will be call via ExternalInterface 
 * IMPORTANT: IVW will be called over ExternalInterface also
 * @author netTrek - Saban Uenlue
 */
 
//******* RELOAD WHILE DISCONNECT
function reloadWhileDisconnected () 
{
	window.location.reload ();
}

function setFocusAt ( id )
{
	//setFocusAt ('B7Mediathek');
	// "s = function() {document.getElementById('"+this.id+"').focus(); }");
	if( document.getElementById ( id ) )
	{
		document.getElementById ( id ).focus();
		return true;
	}
	return false;
} 