current_contact_id = '';
function open_contact(contact_id, ref){
	oContact = document.getElementById('contacte_'+contact_id);
	if (current_contact_id){
		fName = document.theForm['name[0]'].value;
		fSurnames = document.theForm['surnames[0]'].value;
		fPhone = document.theForm['phone[0]'].value;
		fMail = document.theForm['mail[0]'].value;
		oCurrent_contact = document.getElementById('contacte_'+current_contact_id);
		oCurrent_contact.innerHTML = '';	
	}
	contacte_html = document.getElementById('contacte').contentWindow.document.getElementById('contacte').innerHTML;
	oContact.innerHTML =   '<div class="contacte_list">' + contacte_html + '</div>';
	document.theForm['matter[0]'].value='Ref. ' + ref;
	document.theForm['name[0]'].focus();
	if (current_contact_id){
		document.theForm['name[0]'].value = fName;
		document.theForm['surnames[0]'].value = fSurnames;
		document.theForm['phone[0]'].value = fPhone;
		document.theForm['mail[0]'].value = fMail;
	}
	current_contact_id = contact_id;
}