Here is the snippet for JavaScript Popup windows.
1. Just Normal Popup window
<a href="#" onclick="window.open('http://www.tamilcodes.com', 'PoPUpWindow');">Click for Just New Pop up window</a>
2. Popup window with modified features
<a href="#" onclick="window.open('http://www.tamilcodes.com', 'PoPUpWindow', 'statusbar=0,toolbar=0,location=0,menubar=0,resizable=0,scrollbars=0,height=200, width=200,left=0, top=0');">Click for Just New Pop up window with modified features</a>
You can set 1 for statusbar, toolbar to show up.