// Open new window

function jsNewWindow(jsTarget, jsWidth, jsHeight) {
	if (jsWidth == null) {
		jsWidth = 510;
	}
	if (jsHeight == null) {
		jsHeight = 425;
	}
	window.open(jsTarget,"","width=" + jsWidth + ",height=" + jsHeight + ",location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,left=50,top=50");
}