function selectImg(ID)
{
	curID=document.getElementById('deffoto').value;
	if (curID!='0')
	{
		document.getElementById('img_'+curID).style.border='1px solid #66a7d1';
		document.getElementById('img_'+curID).style.marginRight='15px';
		document.getElementById('img_'+curID).style.marginTop='15px';
	}
	document.getElementById('img_'+ID).style.border='2px solid #ff0000';
	document.getElementById('img_'+ID).style.marginRight='13px';
	document.getElementById('img_'+ID).style.marginTop='13px';
	document.getElementById('deffoto').value=ID;
}
function switchContacts()
{
	if (document.getElementById('contacts').disabled=='')
	{
		document.getElementById('contacts').disabled='disabled';
		document.getElementById('contacts').value=document.getElementById('membercontacts').value;
	}
	else
	{
		document.getElementById('contacts').disabled='';
	}
}

