Refer below
Ref:
http://www.aspsnippets.com/Articles/Open-PopUps-and-exchange-data-between-parent-page-and-PopUp-using-JavaScript.aspx
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript">
function OpenPopup(url) {
window.open(url, "Popup", "toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=0,width=400,height=200,left = 490,top = 262");
}
</script>
</head>
<body>
<form id="form1">
<input type = "button" onclick = "OpenPopup('http://www.aspsnippets.com/')" value = "Open Popup Window" />
</form>
</body>
</html>
Demo