/*----- SCRIPTS GERAIS -------*/

////////// QUANDO CARREGAR O SITE /////////
/*window.onload = function (e) {
	
}*/

/**
 * Função que roda os Flash .swf
 * 
 * @param {String} path
 * @param {String} variaveis
 * @param {Number} _width
 * @param {Number} _height
 */
function RodarFlash(path,variaveis,_width,_height)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+_width+'" height="'+_height+'">');
		document.write('<param name="movie" value="'+path+'?'+variaveis+'">');
		document.write('<param name="quality" value="high">');
		document.write('<param name="wmode" value="transparent">');
		document.write('<embed src="'+path+'?'+variaveis+'" width="'+_width+'" height="'+_height+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>');
	document.write('</object>');
}

///////// FECHA AS PopUPs divs ////////////
function mostraOculta_DIV (objeto) {
	var obj = document.getElementById(objeto);
	if(obj.style.display != 'block') {
		obj.style.display = 'block';
	}
	else {
		obj.style.display = 'none';
	}
}

function Trim(str){
	return (str != '')? str.replace(/^\s+|\s+$/g,"") : '';
}
