// JavaScript Document
//create the Flash header in a manner that will not cause the IE border issue for EOLAs

try{
	//for the browsers that can do this....
	oTags = document.getElementsByTagName("object");
	for(var i=0; i< oTags.length; i++){
		oTags[i].outerHTML = oTags[i].outerHTML;	
	}
}catch(e){
	//the browsers that can't do this will not have a problem with the Flash in the first place.	
}