/*
 * Creditos 4way.com.br
 *
 * Insere os creditos nos sites desenvolvidos pela WAY WEB SOLUTIONS LTDA 
 * 06/01/2009 - autor: Joao Gustavo
 *
 */

function printCredito(cor) {
	
	if ( cor == 1 )
		str = '?cor=branco';
	else
		str = '';
	
	element = '<a title="Desenvolvido pela 4WAY Web Solutions" style="float:right;position:relative;margin-top:-36px;margin-right:5px;"><object type="application/x-shockwave-flash" data="http://www.4way.com.br/fla/desenvolvido_Pela_4WAY.swf'+ str +'" width="80" height="35"><param name="movie" value="http://www.4way.com.br/fla/desenvolvido_Pela_4WAY.swf'+ str +'" /><param name="wmode" value="transparent" /></object></a>';
	
	document.write( element );
	
}