var officer_id;
function get_officer_id() {
	var qry = window.location.search;
	qry = qry.replace(/^\?/,"");
	var var_array = qry.split(/&/);
	var cnt_limit = (var_array.length);
    for (count=0;count< cnt_limit;count++)
    {
      var_pair = var_array[count].split(/=/);
      if (var_pair[0] == "officer_id") { officer_id = var_pair[1]; }
	}
}

 var officer_name = new Array("Mr. Marco Gonzalez",  "Mr. Paul Horwitz",  
    "Mr. Gilbert Bankobeza",  "Ms. Megumi Seki",  
    "Ms. Ruth Batten",  "Mr. Gerald Mutisya",  
    "Ms. Tamara Curll",  "Ms. Martha Leyva"); 

var officer_email = new Array("marco.gonzalez@unep.org", "paul.horwitz@unep.org",
"gilbert.bankobeza@unep.org", "meg.seki@unep.org",
"ruth.batten@unep.org", "gerald.mutisya@unep.org",
"Tamara.Curll@unep.org","Martha.Leyva@unep.org");

function print_officers() {
    var cnt_office = (officer_name.length);
    for (count=0;count< cnt_office;count++)
    {
 document.write("<tr>\n<td>" + officer_title[count] + ":</td><td><b>" + officer_name[count] + "</b> </td>");
 document.write("<td><a href=popup.asp?officer_id=" + count + "><img src=email_button.gif border=0 width=91 height=17></a></td>\n</tr>");
    }
} 

//
function print_form_action() {
    get_officer_id();
    var currentHost = window.location.hostname;
    if (currentHost == "ozone.unep.org") {
      document.write("<FORM ACTION=http://ozone.unep.org/cgi-bin/common/mailer.pl METHOD=post>");
    } else {
      document.write("<FORM ACTION=/ozone/contacts/organisational_mailer.asp METHOD=post>");
    }
}

function print_popup_header() {
    get_officer_id();
    document.write(officer_title[officer_id] + ": " + officer_name[officer_id]);
}
