
function scriptLaden(datei) 
{
	var scriptTag = document.getElementById('scriptLader');
	var head = document.getElementsByTagName('head').item(0);
		if(scriptTag) {
         try {
          head.removeChild(scriptTag);      	
         } catch (e) {
          scriptTag.parentNode.removeChild(scriptTag);
         } 			
        }
	script = document.createElement('script');
	script.src = datei;
	script.type = 'text/javascript';
	script.id = 'scriptLader';
	head.appendChild(script);

	css = document.createElement('link');
	css.rel = 'stylesheet';
	css.id = 'css';
	css.href = 'http://www.fu-pa.de/fupa/widget/widget.css';
	head.appendChild(css);
}

function team_widget(team_id,act) {
	scriptLaden("http://www.fupa.net/fupa/widget.php?val="+team_id+"&p="+act+"&url="+window.location.hostname);
}

function oeffneFenster(Adresse, Name, Breite, Hoehe, Scrollbar) 
{
	MeinFenster = window.open(Adresse,Name, "width=710,height=660,scrollbars=" + Scrollbar);
	MeinFenster.focus();
}




