function replaceOuterLinks() {
	var anchor = document.getElementsByTagName("a");
	for(i=0;i<anchor.length;i++){
		if(anchor[i].rel=="outerlink"){
			href = anchor[i].href;
			anchor[i].rel = href;
			anchor[i].href = "#";
			anchor[i].onclick = function(){
				window.open(this.rel);
			}
		}
	}
}

function rewriteFlash(object_id){
	var object_var = document.getElementById(object_id);
	if(typeof(object_var)=="object"){
		object_var.innerHTML = object_var.innerHTML;
		return true; 
	}else{
		return false;
	}
}
