
function load_chat_v2(id,largura,altura)
{
	document.write('<div id="chatDiv">');
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="1" height="1" id="flashChat" align="top"><PARAM NAME="FlashVars" VALUE="id='+id+'">');
	document.write('<param name="allowScriptAccess" value="always" /><param name="wmode" value="Transparent" />');
	document.write('<param name="movie" value="https://www.gg3.com.br/sistema_chat2/chatV2.swf" /><param name="quality" value="best" /><param name="bgcolor" value="#FFFFFF" /><embed id="flashChatEmbed" src="https://www.gg3.com.br/sistema_chat2/chatV2.swf"  FlashVars="id='+id+'" quality="best" width="1" height="1" wmode="transparent" name="flashChat" id="flashChat" align="top" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="https://www.macromedia.com/go/getflashplayer" />');	
	document.write('</object>');
	document.write('</div>');
	
}
function setaLarguraAlturaDiv(largura,altura)
{	
	document.getElementById("flashChat").width=largura;
	document.getElementById("flashChat").height=altura;
	
	if(document.getElementById("flashChatEmbed")!=null)
	{
		document.getElementById("flashChatEmbed").width=largura;
		document.getElementById("flashChatEmbed").height=altura;
	}
	document.getElementById("chatDiv").width=largura;
	document.getElementById("chatDiv").height=altura;
}
function MM_openBrWindowChat(mypage, myname, w, h) 
	{
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h - 50) / 2;
		winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,resizable=yes,location=no,copyhistory=no';
		win = window.open(mypage, myname, winprops);
		
		// Testa se tem algum bloqueador de popups
		
		if(win)
		{	
			if (parseInt(navigator.appVersion) >= 4) 
			{
				win.window.focus();
			}
		}
		else
		{
			alert("Atenção! Bloqueador de popups encontrado!\n\nAltere as opções de popups para 'sempre permitir popups deste site' e efetue o login novamente!");
		}
	} 
function abreChat(id)
{
	
	MM_openBrWindowChat("http://www.gg3.com.br/sistema_chat2/chatCliente.php?codigo="+String(id), "SuporteOnline", 400, 500); 
	
}

