function rewriteContent() {
	var v=document.getElementsByTagName("noscript");  
	for(i=0;i<v.length;i++){
	    if(v[i].className=="ACSel"){
			var el=v[i];
			var nel=document.createElement("span");//create new span element to hold content
			nel.innerHTML=el.innerHTML;// fill the newly inserted span with the active content
			el.parentNode.replaceChild(nel,el); // and replace the <noscript> element with the <span> element
	      }
	}
}
function obfix() {
if (document.body.outerHTML &&
(ob = document.getElementsByTagName('object')).length) {
for (var i=ob.length-1; i >= 0; i--) {
ob[i].outerHTML = ob[i].outerHTML;}}}
window.onload=obfix;
function rewriteContent() {
	var v=document.getElementsByTagName("object");
	for(i=0;i<v.length;i++){
		var el=v[i];
		el.outerHTML=el.outerHTML
	}
}