<!--

var emailPopup = null
var continueVisit = false

function ContinueVisit()
{
  continueVisit = true
}

function openEmailWindow()
{
  
  if (!continueVisit)
  {
    if (emailPopup == null || emailPopup.closed)
    {
      var w = 300, h = 225, left = 0, top = 0

      
      
      wd = (w > screen.availWidth) ? eval(screen.availWidth - 15) : w
      ht = (h > screen.availHeight) ? eval(screen.availHeight - 15) : h
      left = parseInt(screen.availWidth / 2) - 200
      top  = (screen.availHeight >= 500) ? (parseInt(screen.availHeight / 2) - 250) : 0

      
            
      // Open a resizable popup window with scrollbars, the toolbar (buttons),
      // no status bar, in the top left corner of the screen (window positioning
      // only works in IE 4+).
      emailPopup = window.open("pop_under.html", "email", "scrollbars=1,resizable=1,width=" + wd + 
                 ",height=" + ht + ",left=" + left + ",top=" + top + ",toolbar=0,menubar=0,status=1")
      emailPopup.blur()
      this.focus()
    }
  }
  
}
  
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->


