// rodrigo lessa //
function criaFlash(a, w, h) {
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write	(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" ');
	document.write	(' width="'+w+'" height="'+h+'">');
	document.writeln('<param name="movie" value="'+a+'">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<embed src="'+a+'" quality="high" ');
	document.write	(' pluginspage="http://www.macromedia.com/go/getflashplayer" ');
	document.write	(' type="application/x-shockwave-flash" ');
	document.write	(' width="'+w+'" height="'+h+'"></embed>');
	document.writeln('</object>');
}

function abreJanela(a,w,h,s) {
	wnd=window.open(a,"wnd","toolbar=no,location=no,status=no,menubar=no,scrollbars=" + s + ",resizable=no,width=" + w + ",height=" + h + ",top=" + ((screen.height / 2) - (h / 2)) + ",left=" + ((screen.width / 2) - (w / 2)));
	wnd.focus();
}