// JavaScript Document

function replaceContent(file,id) {  
	
     var embed="<object type='application/x-shockwave-flash' data='swf/"+file+"' width='160' height='180'><param name='movie' value='swf/"+file+"' /><param name='wmode' value='transparent' /></object>";
	 document.getElementById(id).innerHTML = embed;
	 
}