<!--
  var ammPopupWindow=null;
  function showAmmPopup(url,popupName,w,h,pos,infocus,reload,is_resizable,with_scrollbars) {
    if(pos == 'random') {
      LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;
      TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;
    }
    if(pos == 'center') {
      LeftPosition=(screen.width)?(screen.width-w)/2:100;
      TopPosition=(screen.height)?(screen.height-h)/2:100;
    }
    else if( (pos!='center' && pos!='random') || pos==null) {
      LeftPosition = 100;
      TopPosition =  100;
    }

    settings='width='+ w + ',height='+ h + ',top=' + TopPosition + ',left=' + LeftPosition + ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable='+is_resizable+',dependent=no,scrollbars='+with_scrollbars;

    ammPopupWindow = window.open('',popupName,settings);

    params = url.split('?');

    if ( params.length <= 1 ) {
      url = url+'?windowName='+window.name;
    } else if (params[1].indexOf('windowName=') < 0) {
      url = url+'&windowName='+window.name;
    }

    ammPopupWindow.location=url;

    if(infocus=='front') {
      ammPopupWindow.focus();
    }

    if ( reload ) {
      if (infocus=='front') {
        params = window.location.search;
        // cut ?
        if ( params.charAt(0) == '?' ) {
          params = params.substring(1, params.length-1);
        }
        params = params.split('&');
        
        if ( params.length <= 1 ) {
          concat = '?';
        } else {
          concat = '&';
        }
        
        addParam = true;
        for (i=0; i<params.length; i++) {
          if ( params[i].substring(0, 10) == 'doNotFocus' ) {
            addParam = false;
          }
        }

        timeOut = 1*1000;
        if ( addParam ) {
          window.setTimeout("window.location = window.location+concat+'doNotFocus=yes'", timeOut);
        } else {
          window.setTimeout("window.location.reload();", timeOut);
        }

      }
    }

  }
//-->