Index: lams_central/web/includes/javascript/openUrls.js =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/includes/javascript/openUrls.js,v diff -u -r1.11 -r1.12 --- lams_central/web/includes/javascript/openUrls.js 30 Jun 2006 04:53:30 -0000 1.11 +++ lams_central/web/includes/javascript/openUrls.js 10 Aug 2006 04:02:44 -0000 1.12 @@ -20,18 +20,18 @@ { if(isMac) { - pWin = window.open('profile.do?user='+username,'pWindow','width=796,height=570,resizable'); + pWin = window.open('profile.do?method=view','pWindow','width=796,height=570,resizable,scrollbars'); } else { if(pWin && pWin.open && !pWin.closed) { - pWin.location='profile.do?user='+username; + pWin.location='profile.do?method=view'; pWin.focus(); } else { - pWin = window.open('profile.do?user='+username,'pWindow','width=796,height=570,resizable'); + pWin = window.open('profile.do?method=view','pWindow','width=796,height=570,resizable,scrollbars'); pWin.focus(); } }