﻿// JScript File

function OpenNewWindow(strURL) {
	jsWindow = window.open(strURL,"new_win","width=750,height=1200,location=yes,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes");
	jsWindow.focus();
}