// common.js 
// common javascript functions to be available within the onlinelegal website
// author: Tim Cromwell
// date: 24.11.2006

function MarkCheckField(Element, ID)
{
	// only mark the field if the current element is selected..
	if (Element.checked)
	{
		document.getElementById(ID).checked = true;
	}	
}

// end of file
