/* 

    Document   : funcoes.js
    Created on : 06/01/2010, 08:36:10
    Author     : Acao Direta Web Studio
    Description: Funcoes - Content 
	
*/


// Link Externo - não use target="_blank" (Y)
    $(function(){
		$("a[rel=externo]").attr('target','_blank');
	});


// Popup para MSN
function abrir(URL) {
					
	  var width = 350;
	  var height = 350;
	
	  var left = 99;
	  var top = 99;
	
	  window.open(URL,'janela', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');
	
	}

