function MakeBottomWindow() {
// Change URL for the new, bottom window.
var url = 'oto_ALL.php';
// Width and height of new window (specified in pixels).
var width = '810';
var height = '600';
// Nothing else needs changing.
var p = 'scrollbars=yes,resizable=no,toolbar=no,' +
'menubar=no,status=no,location=no,left=0,top=0,height=' +
height + ',width=' + width;
var botwin = window.open(url,"bw",p);
self.focus();
}
MakeBottomWindow();
