function newWin(dest, pageName, width, height, locx, locy, scroll) {
	link = window.open(dest, pageName,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+scroll+",resizable=no,width="+width+",height="+height+",left="+locx+",top="+locy);
	link.focus();
}