﻿// JScript File

var sharedPopupWindowSpecs = "height=450,width=700,location=no,menubar=no,status=no,toolbar=no,scrollbars=yes,resizable=yes";

function openHelpWindow(code) {
	if (code != "")
		window.open("help/index.aspx?sectionCode=" + code, "helperWindow", sharedPopupWindowSpecs);
	else
		window.open("help/index.aspx", "helperWindow", sharedPopupWindowSpecs);
}
