function openWindow(pLink)
{
   var intWidth = 500;
   var intHeight = 383;
   var intTop = (screen.height - intHeight) / 2;
   var intLeft = (screen.width - intWidth) / 2;
   
   window.open(pLink, "_blank","width="+intWidth+",height="+intHeight+",top="+intTop+",left="+intLeft+",status=no,resizable=no,scrollbars=no,toolbar=no,menubar=no,,location=no,directories=no,status=no");
}

function openImage(pImagem)
{
   var intWidth = 486;
   var intHeight = 502;
   var intTop = (screen.height - intHeight) / 2;
   var intLeft = (screen.width - intWidth) / 2;
   
   window.open("openImage.asp?src=" + pImagem, "_blank","width="+intWidth+",height="+intHeight+",top="+intTop+",left="+intLeft+",status=no,resizable=no,scrollbars=no,toolbar=no,menubar=no,,location=no,directories=no,status=no");
}

function isValidCardNumber(pCardNumber)
{
   if (pCardNumber.length != 9) return false;
   
   var intCharCode = 0;
   var bolIsValidCardNo = false;
   
   for (var i = 0; i < pCardNumber.length; i++)
   {
      intCharCode = pCardNumber.substring(i, i+1).charCodeAt(0);

      if (i < 2)
      {
         if (!(intCharCode > 64 && intCharCode < 91) && !(intCharCode > 96 && intCharCode < 123))
         {
            return false;
         }
      }
      else
      {
         if (!(intCharCode > 47 && intCharCode < 58))
         {
            return false;
         }
      }
   }
   
   return true;
}

