
function slide_open(filename, x, y)
                        {
                          windowops = eval("'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=" + x + ",height=" + y + "'");
                          window.open(filename, 'New1', windowops);
                          return;
                        }
						
function window_open(filename, x, y)
                        {
                          windowops = eval("'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=" + x + ",height=" + y + "'");
                          window.open(filename, 'New1', windowops);
                          return;
                        }
						
