function Start() {
    FlashFix('ifco_splash');
    FlashFix('ifcoco_splash');
    FlashFix('ifco_outlet_splash');
    FlashFix('merken_loper');
    FlashFix('headerIfCo');
}

function FlashFix(ElId) {
    //make Flash unnattended in IE  
	if ( document.getElementById(ElId) != null ) {
		document.getElementById(ElId).outerHTML = document.getElementById(ElId).outerHTML;
		document.getElementById(ElId).style.visibility = 'visible';
    }
}

