// JavaScript Document
var child;

function popup(page, title) {

  child=window.open(page, title,

  'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=700,top=70,left=250');

  setTimeout('child.focus()',0 );

}