
function checkItem(itemId)
{
	var item = document.getElementById(itemId);
	if(null != item)
		item.checked = true;
}

function popUpWindow(link)
{
	var width = 600;
	var height = 600;
	var	popUpWin = open(link.href, '', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height+',left=200');
	popUpWin.focus();
	return false;
}
