/**
*	Documents specific scripts
**/
var lastPhonelistEntryClicked=null;

//Open object popup
function openPhonelistEntry (ahref, objectGuid)
{
	if (lastPhonelistEntryClicked!=null)
		lastPhonelistEntryClicked.style.fontWeight="normal";
	ahref.style.fontWeight="bold";
	
	lastPhonelistEntryClicked=ahref;
	
	var win = window.open( getVirtualPath () + "phonelist_popup.aspx?mode=5&mitar_guid=" + String(objectGuid),
		"VisitCard",
		"width=620,height=500,scrollbars=yes,resizable=yes");
}
