function general_compare(item1, item2, submit_value)
{
//	submit = document.getElementById('submit_value')

	if (item1.value != item2.value && (item1.value.length > 0 && item2.value.length > 0)) {
		item1.style.backgroundColor = "#ffc2be";
		item2.style.backgroundColor = "#ffc2be";
	//	submit.disabled = true
	}
	else {
		item1.style.backgroundColor = "white";
		item2.style.backgroundColor = "white";
	//	submit.disabled = false
	}

}

