var objLogoFlash = null;
var objStarterFlash = null;


function createLogoFlash(id, str_file) {
	
	if (document.getElementById(id) && UFO) {
		
    var objLogoFlash = {         
    	movie: str_file, 
    	width: "178", 
    	height:"41", 
    	majorversion:"7", 
    	build:"0", 
    	bgcolor:"#004837" 
    };
    UFO.create(objLogoFlash, id);
	}
	
	return false;
}


function createStarterFlash(id, str_file) {
	
	if (document.getElementById(id) && UFO) {
		
		document.getElementById(id).style.padding="0px";
		
    var objStarterFlash = {         
    	movie: str_file, 
    	width: "695", 
    	height:"85", 
    	majorversion:"8", 
    	build:"0", 
    	bgcolor:"#004837" 
    };
    UFO.create(objStarterFlash, id);
	}
	
	return false;
}
