function helpWindow(url) {
	hWindow = window.open(url, 'helpwindow', 'height=300,width=450,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0,dependant=1,alwaysRaised=1');
	hWindow.focus();
	return false;
}

function popupInfoWindow(srcLink, url) {
	hWindow = window.open('', 'popupInfo', 'height=400,width=560,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0,dependant=1,alwaysRaised=1');
	hWindow.focus();
	srcLink.target = 'popupInfo';
	srcLink.href = url;
	return true;
}