//	Change the style of the element with given id.

function pm_changeElementWithIdStyle(inId, inStyle)
{
	if (document.getElementById)
	{
		object = document.getElementById(inId);
		object.className = inStyle;
	}

}
