﻿function checkImport(chkbox, row, index) {
	var obj = document.getElementById(row);
	if (chkbox.checked) {
		if (index % 2 == 0)
			obj.style.backgroundColor = "#FFFFFF";
		else
			obj.style.backgroundColor = "#F0F0F0";
	}
	else
		obj.style.backgroundColor = "#FFE0E0";
}

function openCal(objId) {
	var obj = document.getElementById(objId);
	newWin = window.open("/../system/calendar.aspx?date=" + obj.value + "&sender=" + objId, "Calendar", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizeable=0,width=200,height=180,left=300,top=300");
	newWin.focus();
}