function RequireLogin(tcUrl)
{
   if (!IsCookie("Username",tcUrl))
   {
      return
   }
   window.location=tcUrl
}

function Login(tcLink)
{
   if (!tcLink)
   {
      tcLink=''
   }
window.open("/Francais/Login.aspx?Process="+tcLink,"","width=400,height=400,top=1000","resizable=no,toolbar=no,menubar=no,status=no,location=no,scrollbars=no")
}

function LoginSameWindow(tcLink)
{
   if (!tcLink)
   {
      tcLink=''
   }
   window.location="/LoginSameWindow.aspx?Process="+tcLink
}

function ManageAccount()
{
   if (IsCookie("Username","/wconnect/wc.dll?FournierTransformation~1,7,1"))
   {
      window.location="/wconnect/wc.dll?FournierTransformation~1,7,1"
   }
}

