/**
 * "Nossa Vida - RBS 50 Anos" Functions
 * 
 * @author Tiago Schenkel (schenkelt@ag2.com.br)
 * @version 1.0
 * @date 21/08/2007
 */

// JScript Function
function activateContent(divId) {
	// <![CDATA[
	try {
		document.getElementById(divId).innerHTML = document.getElementById(divId).innerHTML;
	}
	catch(e) {
	}
	// ]]>
}

// JScript Function
function loadOurLife(ourLifeMovie, divId, xmlOfLabelsOfImages, pathForSwfOfYears, pathForVideos) {
	// <![CDATA[
	activateContent(divId);
	
	var so;
	
	so = new SWFObject(ourLifeMovie, divId, '100%', '405', '8.0.0', '#000000', true, 'high');
	so.addVariable('xmlOfLabelsOfImages', xmlOfLabelsOfImages);
	so.addVariable('pathForSwfOfYears', pathForSwfOfYears);
	so.addVariable('pathForVideos', pathForVideos);
	//so.addParam('wmode', 'transparent');
	so.write(divId);
	// ]]>
}