var winContact;

/* ========== goContact ======================*/
function goContact(oListbox){
  var ndxSelected = oListbox.selectedIndex;
  var target, href;

  if(ndxSelected == -1) return;
     
  var value = oListbox.options[ndxSelected].value;
  ndxDelim = value.indexOf("|");
  if(ndxDelim != -1) {
      href=value.substring(0, ndxDelim);
      target = value.substring(ndxDelim+1, value.length);
    }else{
      href=value;
      target = "";
   }

  if (target=="_self" || target==""){
       location.href = href;
  }else{
       if(!winContact){
          createContactWindow()
       }
        winContact.load(href);

  }  


}


/* ======================= createContactWindow ================= */
function createContactWindow(){
   winContact = new isxWindow(
  'winContact',              // target name
  640, 768,  // size: width, height
  100, 200, // position: left, top
  0,                      // location field
  0,                      // menubar
  1,                      // resizable
  1,                      // scrollbars
  0,                      // statusbar
  0);                     // toolbar
}




