function call_phone(phone, form) { var call = "tel:+7"; var number = phone.innerHTML.replace(/[^0-9]/gim,'').slice(1); if (device.mobile()) { window.open(call+number,"_top"); }else{ WindContent(form); } }