function qanda( site, id ){

   url = "/!cms/admin/qanda/qanda.php?show/" + site + "/" + id

   if( document.all ){
      wtop  = ",left=0"
      wleft = ",top=0"
      hh    = screen.availHeight
   }
   else if( document.layers ){
      wtop  = ",screenX=0"
      wleft = ",screenY=0"
      hh    = screen.availHeight
   }
   else {
      wtop  = ""
      wleft = ""
      hh    = 480
   }
   hh -= 40

   wnd = window.open( url, 'qanda', 'menubar=no,resizable=no,scrollbars=yes,width=475,height=' + hh + wtop + wleft )
   wnd.focus()

}

