// Função que escreve o código das peças publicitárias
var folha_ads_chan = "" ;
function folha_ads_show( site , size , expandable ) {
	var rand = Math.floor( 100000000 * Math.random() ) ;
	var position , width , height , conn_type ;
	folha_ads_chan = site ;
	if ( expandable != "1" ){ expandable = 0 ; }
	if ( size == "468x60" ){ position = "1" ; width = "468" ; height = "60" ; }
	if ( size == "120x30" ){ position = "1" ; width = "120" ; height = "30" ; }
	if ( size == "120x60" ){ position = "3" ; width = "120" ; height = "60" ; }
	if ( size == "120x600" ){ position = "6" ; width = "120" ; height = "600" ; }
	if ( size == "180x150" ){ position = "7" ; width = "180" ; height = "150" ; }
	if ( size == "300x250" ){ position = "0" ; width = "1" ; height = "1" ; }
	if ( size == "300x40" ){ position = "5" ; width = "300" ; height = "40" ; }
	if ( size == "120x600-2" ){ size = "120x600" ; position = "5" ; width = "120" ; height = "600" ; }
	if ( size == "1x1-2" ){ size = "1x1" ; position = "8" ; width = "1" ; height = "1" ; }
	if ( size == "300x250-2" ){ size = "300x250" ; position = "8" ; width = "1" ; height = "1" ; }
	if ( size == "1x1" ){ position = "11" ; width = "1" ; height = "1" ; }
	if ( size == "120x730" ){ position = "5" ; width = "120" ; height = "730" ; }
	if ( size == "728x90" ){ position = "1" ; width = "728" ; height = "90" ; }
	if ( size == "90x45" ){ position = "4" ; width = "90" ; height = "45" ; }
	if ( size == "234x60" ){ position = "1" ; width = "234" ; height = "60" ; }
	if ( size == "234x60-3" ){ size = "234x60" ; position = "3" ; width = "234" ; height = "60" ; }
	if ( size == "234x60-6" ){ size = "234x60" ; position = "6" ; width = "234" ; height = "60" ; }
	if ( size == "234x60-9" ){ size = "234x60" ; position = "9" ; width = "234" ; height = "60" ; }
	document.body.style.behavior = "url(#default#clientCaps)" ;
	if ( document.body.connectionType ){
		conn_type = ( document.body.connectionType == "lan" ) ? 1 : 0 ;
	}
	else{
		conn_type = 0 ;
	}
	document.write( "<scr" + "ipt language=\"javascript1.1\" type=\"text/javascript\" src=\"http://de.uol.com.br/js.ng/site=folha&amp;chan=" + site + "&amp;size=" + size + "&amp;page=" + position + "&amp;expble=" + expandable + "&amp;conntype=" + conn_type + "&amp;ord=" + rand + "?\"><\/scr" + "ipt>" ) ;
}

// Chamada à função que escreve o código da publicidade com controle de exposição de uma vez por sessão
function folha_ads_show_once( site , size , expandable ) {
	window.onError = null ;
	var cookie_name = site.replace( "." , "_" ) + "-" + size ;
	var popup = document.cookie.indexOf( cookie_name ) ;
	if( popup == -1 ){
		folha_ads_show( site , size , expandable ) ;
		document.cookie = cookie_name + "=1" ;
	}
}
