function check(Id1,Id2,a) {

	var standard = new Array('mail','tel','addy','addy1','misc');
	
	var i = 0;
	while (i < 5){
		document.getElementById(standard[i]).style.backgroundColor='#FFFFFF';
		document.getElementById(standard[i]).style.borderColor='#00335b';
		i++;
	}
	
	if (document.contacts.checkradio[a].checked==true) {
		var tag1 = document.getElementById(Id1);
		tag1.style.backgroundColor='#FFEEEE';
		tag1.style.borderColor='#A05000';
		
		if(Id2!=''){
		var tag2 = document.getElementById(Id2);
		tag2.style.backgroundColor='#FFEEEE';
		tag2.style.borderColor='#A05000';
		}
	}
}
