/* javascript for all scripts */

function SelectCalculator()
{
	document.frmCalculators.type.value = document.frmCalculators.calculator.value					
	document.frmCalculators.submit()
}

function OpenHelpWindow(t_URL)
{
	//var w_width = screen.availWidth / 3
	//var w_height = screen.availHeight / 1.2
	var w_width = 350
	var w_height = 500
	var w_chrome = "resizable,scrollbars,top=1,left=1,height=" + w_height + ",width=" + w_width

	// open help window with specified URL

	help_window = window.open(t_URL, "HelpWindow", w_chrome)
}

