// 	Gerar Janela

function NewWindow(mypage, myname, w, h, scroll) 
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function AbreJanela(url) 
{
	window.open(url);
}

function janela(aa,bb,cc)
{
	open(aa,bb,cc);
}

// Arquivo Flash

function flash(arqflash,largura,altura) 
{	
	document.write('<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="' + largura + '" height="' + altura + '">');
	document.write('<param name="movie" value="' + arqflash + '" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="wmode" value="transparent" />');
	document.write('<param name="menu" value="false" />');
	document.write('<param name="wmode" value="transparent" />');
	document.write('<embed src="' + arqflash + '" width="' + largura + '" height="' + altura + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" menu="false" wmode="transparent"></embed>');
	document.write('</object>');
}

// Banner Rotativo

function Banners()
{
	var MNews = new Array(); 
	
   	//MNews[0]= "<a href='../assinar/assinar.asp' target='conteudo'><img src='../banners/banner_filhos_carnaval.gif' width='468' height='60' border='0'>"
	//MNews[0]= "<a href='#' onClick=NewWindow('../banners/img.jpg','janela','570','749','no','resizable=yes');return false;><img src='../banners/vaca_lele.gif' width='468' height='60' border='0'>"
	
	//MNews[0]= "<embed src='../banners/xgames.swf' width='468' height='60' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' menu='false' wmode='transparent'></embed>"
	//MNews[1]= "<embed src='../banners/02hbo.swf' width='468' height='60' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' menu='false'></embed>"
	//MNews[2]= "<embed src='../banners/03hbo.swf' width='468' height='60' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' menu='false'></embed>"

	MNews[0]= "<a href='#' onClick=NewWindow('../revista_online/revistas/09-10/revista_online.htm','janela','903','620','no','resizable=yes');return false;><img src='../banners/revista_online.gif' width='468' height='60' border='0'></a>"
	
	// MNews[0]= "<a href='#' onClick=NewWindow('../promocoes/login1.asp?Cod_Promo=34','janela','300','383','no','resizable=yes');return false;><img src='../promocoes/img_promocoes/promo_marco10/banner.jpg' width='468' height='60' border='0'>"

	//MNews[0]= "<a href='#' onClick=NewWindow('../assinar/assinar.asp','janela','300','353','no','resizable=yes');return false;><img src='../promocoes/img_promocoes/banner_axn.jpg' width='468' height='60' border='0'>"
    //MNews[2]= "<a href='#' onClick=NewWindow('../promocoes/pg_promocoes.asp?Cod_Promo=21','janela','300','353','no','resizable=yes');return false;><img src='../promocoes/img_promocoes/tnt_oscar/banner.gif' width='468' height='60' border='0'>"

   	var Numero = Math.floor(Math.random()*1);
   	document.write(MNews[Numero]);
}