function openWindow(strFName) 
{
	wPopup = window.open(strFName, 'cInfo', 'width=810,menubar=0,resizable=1');
	wPopup.focus();
	return false;
}
 
function openWindow2(strFName) 
{
	wPopup = window.open(strFName, 'cComment', 'width=810,menubar=0,scrollbars=1,resizable=1');
	wPopup.focus();
	return false;
}
 
function openWindow3(strFName) 
{
	wPopup = window.open(strFName, 'cReserve', 'width=810,menubar=0,scrollbars=1,resizable=1');
	wPopup.focus();
	return false;
}
 
function openWindowX(strFName) 
{
	wPopup = window.open(strFName, '_blank');
	wPopup.focus();
	return false;
}
 
