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

