<html>
<head>
<title>Submit Popup Hiden</title>
</head>
<body>
<script>
function target_popup(form) {
window.open('', 'formpopup', 'width=1px,height=1px,toolbar=no,menubar=no,location=no,status=0,scrollbars=no,directories=0,resizable=0,left=0,top=0');
form.target = 'formpopup';
window.setTimeout(function(){wincontrol.close()},1000);
return false;
}
</script>
<form action="http://www.google.com/ " method="post" name="frm" onsubmit="target_popup(this)">
<input type="text" name="sindh" value=test>
<input type="submit" value="SEND NOW" />
</form>
</body>
</html>