// removes the square border that IE
// insists on adding to checkboxes and radio
function removeCheckBoxBorders()
{
	var el = document.getElementsByTagName("input");
	for (i=0;i<el.length;i++)
	{
		var type = el[i].getAttribute("type");
		if((type=="checkbox")||(type=="radio"))
		{
			el[i].style.border = "none";
		}
	}
}
