// JavaScript Document
function Start(URL, WIDTH, HEIGHT) {
windowprops ="left=250,top=250,resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no,status=no,width=" + WIDTH +",height=" + HEIGHT;
preview = window.open(URL, "preview", windowprops);
}
function auto() {
url = "popnews01.htm";
width=400;
height=300;
delay =1;
timer = setTimeout("Start(url, width, height)", delay*1000); 
}
