// JavaScript Document
var helpWin;
var helpFile;

function helpWindow(helpFile) {
	helpWin = window.open(helpFile, "helpWindow", "width=605,height=300,scrollbars=yes");
	helpWin.focus;
}
