// THE CORRECT SPELLING IS CONTACTENOS this file will be replaced with the one spelled correctly
// This function opens a popup window. If the users screenwidth or screenheight are too
// small scrollbars are added to the popup window. This function is called by the onClick
// event of contactenos links.

function OpenPopup()
{
  var strURL = "/espanol/contact_us_popup.cfm"
  if (screen.availWidth < 400 || screen.availHeight < 400)
  {
    var w = window.open(strURL,"popup","width=400,height=400,scrollbars=yes");
  }
  else
  {
    var w = window.open(strURL,"popup","width=400,height=400");
  }
  w.moveTo(10,10);
  w.focus();
  return false;
}

