function popupform(myform, windowname) { // this allows the action of a form to be performed in a popup box if (! window.focus)return true; window.open('', windowname, 'height=400,width=500,scrollbars=yes'); myform.target=windowname; return true; }