<!--
// function for login help
function LoginHelp() {
	path = "loginhelp.html";
	w = screen.width;
	if (w <= 800) {
		openWindow(path, 'HELP', 560, 580, 30, 5, 'menubar=no, resizable=no, scrollbars=auto, status=no, locationbar=no');
	} else {
		openWindow(path, 'HELP', 560, 740, 30, 5, 'menubar=no, resizable=no, scrollbars=auto, status=no, locationbar=no');
	}
}

// function for new window
// (c) 2001 by paul sauer
function openWindow(url, name, w, h, x, y, settings){
var stdSettings = ", menubar=yes, resizable=yes, scrollbars=yes, status=yes, locationbar=yes";
if (!h) h = screen.availHeight;
if (!w) w = screen.availWidth;
if (!x) x = (screen.availWidth - w) / 2;
if (!y) y = (screen.availHeight - h) / 2;
if (!settings){
settings = 'width='+w+',height='+h+',screenX='+x+',screenY='+y+',top='+y+', left='+x+ stdSettings;
} else {
settings = 'width='+w+',height='+h+',screenX='+x+',screenY='+y+',top='+y+', left='+x+', ' + settings;
}
win = window.open(url, name, settings);
}
//-->