Code
<script>
// Popup window code
function newWindow(url) {
popupWindow = window.open(
url,
'popUpWindow',
"height=500,width=450,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes")
}
newWindow('http://www.htmlfreecodes.com');
</script>