function popup(page, title, height, width, scrollbar) {
	var tools = "toolbar=no,directories=no,menubar=no, height="+height+", width="+width+", x=150,y=150,scrollbars="+scrollbar;
	pops = window.open(page,title,tools);
    pops.focus();
}

