// Abre um popup para o Twitter
function compartilharTwitter(pUrl)
{
  window.open(pUrl, 'SHARETWITTER', 'height=450, width=650, scrollbars=yes, status=yes, resizable=yes').focus();
}

// Abre um popup para o Facebook
function compartilharFacebook(pUrl)
{
  window.open(pUrl, 'SHAREFACEBOOK', 'height=600, width=1000, top=0, left=0, scrollbars=yes, status=yes, resizable=yes').focus();
}

// Abre um popup para o Orkut
function compartilharOrkut(pUrl)
{
  window.open(pUrl, 'SHAREORKUT', 'height=600,width=1000,top=0,left=0, scrollbars=yes, status=yes, resizable=yes').focus();
}


