function newWindow(href, title, w, h, scrollbars) {
	w1=window.open(href,title,'resizable=yes,menubar=no,status=no,scrollbars='+scrollbars+',width='+w+',height='+h);
	w1.focus();
}

function newWindowBig(href, title, w, h, scrollbars) {
	w1=window.open(href,title,'resizable=yes,menubar=yes,status=yes,scrollbars='+scrollbars+',width='+w+',height='+h);
	w1.focus();
}

