<!--
function createWindow(strURL, strName, intWidth, intHeight, strScroll, strToolbar) {
	if (!strToolbar) strToolbar = "no";
	args = "width=" + intWidth + ",height=" + intHeight + ",resizable=no,toolbar=" + strToolbar + ",scrollbars=" + strScroll + ",status=0";
	remote = window.open(strURL, strName, args);
	if (remote != null) {
		if (remote.opener == null) remote.opener = self;
	}
	return remote;
}
//-->
