function wr (str) {
	window.document.write(str);
}

function addSWF(file,width,height,vars) {
	wr('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0 width="'+width+'" height="'+height+'">');
	wr('<param name="movie" value="'+file+'" />');
	wr('<param name="quality" value="high" />');
	wr('<param name="menu" value="false" />');
	wr('<param name="wmode" value="Transparent" />');
	wr('<embed src="http://www.consuldata.com.br/'+file+'" width="'+width+'" height="'+height+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false" wmode="transparent"></embed>');
	wr('</object>');
}