<!DOCTYPE html>
<html>
<head>
<script>
function openWin() {
    window.open("http://www.w3ii.com","_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400");
}
</script>
</head>

<body>
<form>
<input type="button" value="Open Window" onclick="openWin()">
</form>
</body>

</html>