function selectItem(selectBoxID,itemValue){
	var selectBox = document.getElementById(selectBoxID);
	var selectBoxLength = parseInt(selectBox.length);
	for (var i = selectBoxLength-1; i >= 0; i = i-1)
	{
		//document.getElementById(fromBox).options[i].selected
		if (selectBox.options[i].value == itemValue)
		{
			selectBox.options[i].selected = true;
			break;
		}
	}
}
function checkItem(checkBoxID,itemValue){
	var checkBox = document.getElementById(checkBoxID);
	if(itemValue == '1')
	{	checkBox.checked = true;	}
	else
	{	checkBox.checked = false;	}
}