2. Juli 2012 11:53
2. Juli 2012 12:47
function callLyncNumber(phoneFieldName) {
var phoneField = document.getElementById(phoneFieldName);
phoneField.style.textDecoration = "underline";
phoneField.style.color = "blue";
phoneField.ondblclick = function () { if (phoneField.value != null && phoneField.value != "") { window.open("tel:" + phoneField.value); } };
}