function helpWindow() {
  popupWin = window.open('../help.asp', 'help_win', 'width=500,height=350,left=250,top=100')
}

function helpWindowr() {
  popupWin = window.open('help.asp', 'help_win', 'width=500,height=350,left=250,top=100')
}



function OptionWindow(opt) {
	var thisOption = opt;
	var thisURL = "option_window.asp?id=" + thisOption;
	var winName = "descrWindow";
	
	//alert(thisOption + "\n" + thisURL + "\n" + winName);
	
	popupWin = window.open(thisURL, winName, 'scrollbars=yes,width=418,height=300,left=250,top=100');
}
