i tried below javascript and it does open the url in open window but it clears the url in the current window as well points to the new URL.
window.open(‘http://www.google.com’,’_blank’);
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is occurring because the second spot where you have _blank is where the name should be.
I would recommend as the link above that Nathan post suggests doing this. :
Then doing some javascript triggering on whatever event is causing the new window to open.
So, lets say it is an image, set the Target=”_blank” for the image and then set an OnClick event to call a function with the window.open code in it.
That will do the trick. HTH