//BY GWENAEL GODDE, FOR WATERMELON CORPORATION
//COPY, USE, MODIFICATION, REPRODUCTION NOT ALLOWED.

function firepopup(xurl,xwidth,xheight)
  {
        if(xwidth==0)
          {window.open(xurl,'_blank');}
        else if(xwidth==1)
          {window.open(xurl,'_self');}
       else
          {window.open(xurl,'_blank','toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,copyhistory=1,menuBar=0,width='+xwidth+',height='+xheight+'');}
  }

