// javascript help library

function showHelp(helpId) {
	
	var window = openWindow('/cgi-bin/help.cgi?id=' + helpId,'Help',400,250,5,5,0);
	
}

function openWindow(windowURL,windowName,windowWidth,windowHeight,x,y,scroll) {
	
	newWindow = window.open(windowURL,windowName,'width='+windowWidth+',height='+windowHeight+',left='+x+',top='+y+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars='+scroll+',resizable=0');

	newWindow.focus();

}