<!--
/*
 * Javascript Class
 *-----------------------------------------------------------------------------
 * file: mdpopup.js
 * lib:
 * auth: Thomas Cocuzza <tcocuzza@max.md>
 * date: 2009/4/17
 * copy: (C) Copyright 2007 MaxMD Corporation, All Rights Reserved.
 * desc: gives a popup window with secureSend
 *----------------------------------------------------------------------------
 * This used to be on sb4 but sb4 does not have a certificate so it was throwing an error
 * 
 * 
 */

   function secureSend(domainname){
      newwin = popup('https://SecureMessage.mdEmail.md?domain='+domainname+'&s=0', 450, 500);
      return 1;
   }

   function popup(url, w, h){
      newwin = window.open(url,'google_map',
      'width='+w+',height='+h+',resizable=1');
   }
//-->
