 function process(action) {

   var v_url   = "http://apex.oracle.com" +
                 "/pls/otn/f" + 
                 "?p=9751:" +
                 "20:" +
                 ":" +
                 ":" +
                 ":" +
                 ":";

   v_url = v_url + "P20_ME,P20_AIL,P20_BSCRIBE,P20_MMUNITY:,,"+action+",4";
  
   var v_win   = window.open(
                       v_url,
                       "Ergebnis",
                       "width=500,height=350,left=100,top=100," +
                       "innerWidth=480,innerHeight=330," +
                       "location=no,menubar=no,scrollbars=no,status=no,toolbar=no"
                     );
     }

function writeCounterText(p_Element) {
  v_Url = 'http://apex.oracle.com/pls/otn/ORA10B.COUNT_CLICK?V_APPLICATION=FORMS_COMMUNITY_HOME';
  v_CounterText = '<img src="' + v_Url + '" alt="" height="0" width="0">'; 
  if (window.location.hostname == "www.oracle.com") {
    document.getElementById(p_Element).innerHTML = v_CounterText;
  }
}

