// *** FROM Joe Lynds web pages

function emailJob (JID) {
window.open('/Docs/EmailJob.aspx?JID=' + JID,'child','scrollbars=no,width=430,height=420');
}

// *** FROM "../Master/MSJ.js"
	function a(x)
	{
		self.status=x; 
		return true;
	};
	
	function o()
	{
		self.status=''; 
	};
	
	function SetCellColor(varCell, varToggle)
	{
		if (varCell==false) return;
		
		if (varToggle) 
		{
			varCell.style.backgroundColor = "#D7D7EA";
			varCell.style.color = "#000000";
		}
		else
		{
			varCell.style.backgroundColor = "";
			varCell.style.color = "#666666";
		}

	};