// JavaScript Document
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
//função para abrir popup
//Ex:<a href="javascript:abrir('http://www.3duardogoncalves.blogspot.com');">Poesias</a>
function abrir(URL) {
   var width = window.screen.width;
   var height = window.screen.height;
   window.open(URL,'Visualização', 'width=425, height=385, scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no, left=125, top=125');
}