/**
 * @author bdish
 */
function pop_it(the_form) {
   my_form = eval(the_form);
   height = 440;
   width = 800;
   var top=(screen.height-height)/2;
   var left=(screen.width-width)/2;
   window.open("Test", the_form, "top="+top+",left="+left+",width="+width+",height="+height+",menubar=0,toolbar=0,location=0,status=0,scrollbars=1,resizable='no'");
   my_form.target = the_form;
   my_form.submit();
}