
<!--
//
// Right justify text in input box
function pad(number,length) {
	var str = '' + number;
	if (str.length > length) {
		first = 0;
		while (str.charAt(first) == ' ' && first < length)
			first++;
		str = str.substr(first);
	}
	while (str.length < length)
		str = ' ' + str;
	return str;
}

// Popup box for help window
function win_help(link) {
	win = window.open(link, "pers_help", "width=400,height=300,resizable=yes,scrollbars=yes");
	win.focus();
	return false;
}

// Popup box for graphs window
function win_graph(link) {
	win = window.open(link, "pers_graph", "width=600,height=400,resizable=yes,scrollbars=yes");
	win.focus();
	return false;
}
// -->


