function popupWin(link, winTitle)
 {
  posCode = '';
  winW = 600;
  winH = 600;

  Window = window.open(link,'_blank','menubar=no,toolbar=no,scrollbars=yes,status=no,top=150,left=150,width='+winW+',height='+winH+','+posCode);
 }

function articlesize(ile)
{
       var articletags = new Array('span','p','b','u','i','a','td','div');
       var fsizes = new Array( '11px','13px','16px' );
       var doc = document.getElementById("article");

       for (i = 0; i < articletags.length; i++)
         {
           doc.style.fontSize = fsizes[ile];

           currenttag =  doc.getElementsByTagName(articletags[i]);

           for (j = 0; j < currenttag.length; j++)
                   currenttag[j].style.fontSize = fsizes[ile];
         }
}
