function ieup() {
	
	if (!document.all || !window.print || window.opera) return;
	if (document.getElementsByTagName) { 
	
		// Object   
		var theObjects = document.getElementsByTagName("object");
		for (var i = 0; i < theObjects.length; i++) {
			
			// DIV auf dem Object
			div = theObjects[i].parentNode.insertBefore(document.createElement("div"), theObjects[i]);
			div.style.display="none";
			div.appendChild(theObjects[i]);
			
			if(div.firstChild.data) {
				// Fix for Flash Satay style objects
				div.firstChild.removeAttribute('data');
			}
			
			// Flashvars werden gespeichert
			var theParams = div.getElementsByTagName("param");
			for (var j = 0; j < theParams.length; j++) {
				
				if(theParams[j].name.toLowerCase() == 'flashvars') {
					var theFlashVars = theParams[j].value;
					break;
				}
			
			}
		
			// Flashvars werden im DIV ausgegeben
			var theInnnerHTML = div.innerHTML;
			var re = /<param name="FlashVars" value="">/ig;
			theInnnerHTML = theInnnerHTML.replace(re, "<param name='FlashVars' value='" + theFlashVars + "'>");
			div.outerHTML = theInnnerHTML;
		
		}
	
		// Embed
		var embs = document.getElementsByTagName("embed");
		for (i=0; i<embs.length; i++) {
			embs[i].outerHTML = embs[i].outerHTML;
		}
	}
	
}
