function wOpen(uri){ 
   if ((window.open) && (document.getElementById)){ 
       uri = uri.href; 
       window.open (uri, "other", "width=500, height=400, scrollbars=no"); 
       return false; 
   } else{ 
       return true; 
   } 
} 
