var  popwin =0;

function MailPopup(surl)
{   
   myRef = window.open('emailpage.aspx?url=' + surl,'mywin', 'left=20,top=20,width=400,height=175,toolbar=0,resizable=0,scrollbars=0');
   
}

function BatchInfoPopup(surl)
{ 
   //alert(self.location);
   
   myRef = window.open('batchcodeinfo.aspx?url=' + surl,'mywin', 'left=20,top=20,width=500,height=550,toolbar=0,resizable=0,scrollbars=0');
   //myRef.mailer = theForm;
   
  
}

function ManInfoPopup(surl)
{ 
   //alert(self.location);
   
   myRef = window.open('mandateinfo.aspx?url=' + surl,'mywin', 'left=20,top=20,width=500,height=550,toolbar=0,resizable=0,scrollbars=0');
   //myRef.mailer = theForm;
   
  
}


function GeneralPopup(url)
{
  if(popwin)
  {
    if(!popwin.closed) popwin.close();
  }
  popwin =window.open(url,'mywin', 'left=20,top=20,width=550,height=550,toolbar=0,resizable=0,scrollbars=01');
}

