Thanks for the code but when I tried it, the screen just flashed and never opened a window. Any idea where the mistake is in the code ( I copied exactly what you had)?
s.Append("http://localhost/clublean/CourseSelection/DotNetNuke.aspx?name=")
s.Append(objUser.LastName)
s.Append("&studentnum=")
s.Append(objUser.Profile.IM)
'Now build javascript
'myjs.Append("<script type = 'text/javascript'>")
'myjs.Append(" window.open('" & s.ToString() & "')</script>")
myjs.Append(" window.open('" & s.ToString() & "','','width=400,height=600,status,toolbar=no,menubar=no,location=no')</script>")
Response.Write(myjs.ToString())