// Open new window

function jsNewWindow600(jsTarget, jsWidth, jsHeight) {
	if (jsWidth == null) {
		jsWidth = 800;
	}
	if (jsHeight == null) {
		jsHeight = 650;
	}
	window.open(jsTarget,"","width=" + jsWidth + ",height=" + jsHeight + ",location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,left=50,top=50");
}