function popupForm(url) { //alert(url); newWindow = window.open(url, 'Submission', 'height=380,width=600,status=0,location=0,menubar=0,scrollbars=1,toolbar=0,resizable=1'); if ( window.focus ) { newWindow.focus(); } return false; } function closePopup() { opener.location.reload(); window.close(); }