function userinfo_popup(username) {
   // Calls the portal user personal profile info page in a small popup window
   /* newWindow = window.open("http://www.dynamicalsystems.org:8000/pu/pl/detail?user_id="+username,"subwind","height=200,width=300");  */
   newWindow = window.open("/pu/pl/detail?user_id="+username,"subwind","height=200,width=300"); 
   newWindow.focus();
   return false;

}

function helpinfo_popup(help_message_uid) {
   // Calls the portal user help info page in a small popup window
   newWindow = window.open("/ab/ph/detail?popup_help="+help_message_uid, "subwind", "height=300, width=400, top=100, left=100, toolbar=no, menubar=no, scrollbars=yes, resizable=yes");
   newWindow.focus();
   return false;
}


1;
