/*
	Funções para uso com os destaques de home.
	@created: 2006-09-06 23:59
*/
	/* Funções do hotsite Superman */
		function openHotSite()
		{
			if(document.getElementById('hotsite_superman_dock'))document.getElementById('hotsite_superman_dock').style.display = 'inline';
			if(document.getElementById('hotsite_vivochat_dock'))document.getElementById('hotsite_vivochat_dock').style.display = 'none';
			if(document.getElementById('cm8_superman_dock'))document.getElementById('cm8_superman_dock').style.display = 'none';
			if(document.getElementById('hotsite_superman'))document.getElementById('hotsite_superman').Play();
		}
		
		function closeHotSite()
		{
			//if(document.getElementById('hotsite_superman_dock'))document.getElementById('hotsite_superman_dock').style.display = 'none';
			if(document.getElementById('hotsite_vivochat_dock'))document.getElementById('hotsite_vivochat_dock').style.display = 'none';
			if(document.getElementById('hotsite_superman'))document.getElementById('hotsite_superman').GotoFrame(1);
			if(document.getElementById('hotsite_superman'))document.getElementById('hotsite_superman').Rewind();
		}
	
	/* Funções do hotsite Vivo Chat */
	
		function openVivoChat()
		{
			//if(document.getElementById('hotsite_vivochat_dock'))document.getElementById('hotsite_vivochat_dock').style.display = 'inline';
			if(document.getElementById('hotsite_vivochat_dock').style.display != 'inline')
			{
				document.getElementById('hotsite_vivochat_dock').style.display = 'inline';
				if(document.getElementById('hotsite_vivochat'))document.getElementById('hotsite_vivochat').Play();
			}			
			
		}
		
		window.closeVivoChat = function()
		{
			//if(document.getElementById('hotsite_superman_dock'))document.getElementById('hotsite_superman_dock').style.display = 'none';
			if(document.getElementById('hotsite_vivochat_dock')){
				document.getElementById('hotsite_vivochat_dock').style.display = 'none';
			}
			//if(document.getElementById('hotsite_vivochat'))document.getElementById('hotsite_vivochat').GotoFrame(1);
			//if(document.getElementById('hotsite_vivochat'))document.getElementById('hotsite_vivochat').Rewind();
		}

		
/*		function closeCM8()
		{
			document.getElementById('cm8_superman_dock').style.display = 'none';
		}
*/		
	/* Funções do destaque Moblog da home jovem */
	
		window.openMoblog = function()
		{
			if(document.getElementById('destaque_moblog_dock').style.display != 'inline'){
				document.getElementById('destaque_moblog_dock').style.display = 'inline';
			}			
		}
		
		window.closeMoblog = function()
		{
			if(document.getElementById('destaque_moblog_dock')){
				document.getElementById('destaque_moblog_dock').style.display = 'none';
			}
		}
		
		
		window.openIndique = function()
		{
			if(document.getElementById('cm8_vivo_indique').style.display != 'inline'){
				document.getElementById('cm8_vivo_indique').style.display = 'inline';
			}			
		}
		
		
		window.closeIndique = function()
		{
			if(document.getElementById('cm8_vivo_indique')){
				document.getElementById('cm8_vivo_indique').style.display = 'none';
			}
		}
		
		window.openCM8 = function()
		{
			if(document.getElementById('cm8_vivo'))
			{
				if(document.getElementById('cm8_vivo').style.display != 'inline'){
					if(document.getElementById('region'))
					{
						//document.getElementById('region').style.visibility='hidden';
					}
					//document.getElementById('dicas_seguranca').style.visibility='hidden';
					document.getElementById('cm8_vivo').style.display = 'inline';
				}
			}
		}
		
		window.closeCM8 = function()		
		{		
			if(document.getElementById('cm8_vivo'))
			{					
				if(document.getElementById('cm8_vivo')){
					//if(document.getElementById('region'))
					//{
						document.getElementById('cm8_vivo').style.visibility='hidden';
					//}
					//document.getElementById('dicas_seguranca').style.visibility='hidden';
					document.getElementById('cm8_vivo').style.display = 'none';
				}
			}
		}