Тут все просто, вроде. В чужой код лезть не буду, так как я сам новичек. Но вроде так, не воспринимайте мой пример верьез:
<!DOCTYPE html>
<html>
<head>
<title>ddd</title>
</head>
<body>
<div class="data-form">
<div class="row">
<label for="alt11">Телефон 1:</label>
<div class="holder-row">
<div class="input-text tel-wrap tel">
<span>
<label>+7 (<input type="text" maxlength="3" id="phoneSource1" />) </label>
<label> <input type="text" maxlength="3" id="phoneSource2"/></label>
<label> - <input type="text" maxlength="2" id="phoneSource3"/></label>
<label> - <input type="text" maxlength="2" id="phoneSource4"/></label>
</span>
</div>
<span class="ok-holder"> </span>
<span class="error-holder">Телефон<br />введен<br />не верно</span>
</div>
</div>
<div class="row">
<label for="alt12">Телефон 2:</label>
<div class="holder-row">
<div class="input-text tel-wrap tel">
<span>
<label>+7 (<input type="text" maxlength="3" id="phoneDestination1"/>) </label>
<label> <input type="text" maxlength="3" id="phoneDestination2"/></label>
<label> - <input type="text" maxlength="2" id="phoneDestination3"/></label>
<label> - <input type="text" maxlength="2" id="phoneDestination4"/></label>
</span>
</div>
<span class="ok-holder"> </span>
<span class="error-holder">Телефон<br />введен<br />не верно</span>
</div>
<input type="button" value="Проверить" onclick="checks()" />
</div>
<script type="text/javascript">
function checks() {
var tel11 = document.getElementById('phoneSource1').value;
var tel12 = document.getElementById('phoneSource2').value;
var tel13 = document.getElementById('phoneSource3').value;
var tel14 = document.getElementById('phoneSource4').value;
var phoneSource = tel11 + tel12 + tel13 + tel14;
var tel21 = document.getElementById('phoneDestination1').value;
var tel22 = document.getElementById('phoneDestination2').value;
var tel23 = document.getElementById('phoneDestination3').value;
var tel24 = document.getElementById('phoneDestination4').value;
var phoneDestination = tel21 + tel22 + tel23 + tel24;
if (phoneSource == phoneDestination) {
alert("Не пытайся схитрить, падла!")
}
else {
alert("Все нормуль. ")
}
}
</script>
</body>
</html>