// JavaScript Document
// This function defeats the undesirable border caused by the Eolas/MS dispute 
function decode(input) { return input.replace(/&lt;/g, "<").replace(/&gt;/g, ">").replace("<![endif]-->",""); }
isStd = (navigator.appName == "Netscape") ? true : false;
var swfs = document.getElementsByTagName("noscript");
for (each in swfs){
	if(swfs[each].title == "swf"){
		var placeHolder = document.createElement("div");
		// Firefox must use decode() to convert '&lt;' and '&gt;' to '<' and '>' respectively
		// MSIE does not copy the inner 'param' tag as part of innerHTML, but it is not needed by IE anyhow
		if (isStd){
			placeHolder.innerHTML = decode(swfs[each].innerHTML);
		}else{
			placeHolder.innerHTML = swfs[each].innerHTML.replace("<![endif]-->","");
		} // End IF
		swfs[each].parentNode.insertBefore(placeHolder, swfs[each]);
	}
} // End For Each Swf	
