// Open new window

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