opening new window in onclick javascript
try this
Code:
<A HREF="javascript:void(0)"
onclick="window.open('welcome.html','welcome')">
Open a new window</A>
or if you want new window with specific size and location and no tool bar then try following
Code:
<A HREF="javascript:void(0)"
onclick="window.open('welcome.html',
'welcome','width=300,height=200')">
Open a new window</A>