function OpenWindow (src, name, w, h, l, t) {
	newWindow = window.open(src, name, "width="+w+",height="+h+",left="+l+",top="+t+",scrollbars=yes");
	newWindow.focus();
}