﻿String.prototype.Trim = function() {
    return this.replace(/^\s+|\s+$/g, "");
}
String.prototype.LTrim = function() {
    return this.replace(/^\s+/, "");
}
String.prototype.RTrim = function() {
    return this.replace(/\s+$/, "");
}
var PreID = 'ctl00_CPH1_';
function AdresKutusuDoldur() {
    var Semt = document.getElementById(PreID + 'TBSemt').value;
    var Mahalle = document.getElementById(PreID + 'TBMahalle').value;
    var Site = document.getElementById(PreID + 'TBSite').value;
    var Cadde = document.getElementById(PreID + 'TBCadde').value;
    var Sokak = document.getElementById(PreID + 'TBSokak').value;
    var Bina = document.getElementById(PreID + 'TBBina').value;
    var KapiNo = document.getElementById(PreID + 'TBKapiNo').value;
    var KatNo = document.getElementById(PreID + 'TBKatNo').value;
    var Daire = document.getElementById(PreID + 'TBDaire').value;
    var IlAdi = '';
    var IlceAdi = '';

    if (document.getElementById('SIl').selectedIndex != 0)
        IlAdi = document.getElementById('SIl')[document.getElementById('SIl').selectedIndex].text;

    if (document.getElementById('SIlce').length > 0) {
        if (document.getElementById('SIlce').selectedIndex != 0)
            IlceAdi = document.getElementById('SIlce')[document.getElementById('SIlce').selectedIndex].text;
    }
    
    var Adres = ''
    if (Mahalle != '') { Mahalle = Mahalle + ' Mah.'; }
    if (Cadde != '') { Cadde = Cadde + ' Cad.'; }
    if (Sokak != '') { Sokak = Sokak + ' Sok.'; }
    if (KapiNo != '') { KapiNo = 'No: ' + KapiNo; }
    if (KatNo != '') { KatNo = 'Kat: ' + KatNo; }
    if (Daire != '') { KatNo = KatNo + '/' + Daire; }

    var Satir1 = '', Satir2 = '', Satir3 = ''

    if (Mahalle != '') { Satir1 = Mahalle; }

    if (Cadde != '') { Satir2 = Satir2 + Cadde; }
    if (Sokak != '') { Satir2 = Satir2 + ' ' + Sokak; }
    if (Site != '') { Satir2 = Satir2 + ' ' + Site; }
    if (Bina != '') { Satir2 = Satir2 + ' ' + Bina; }
    if (KapiNo != '') { Satir2 = Satir2 + ' ' + KapiNo; }
    if (KatNo != '') { Satir2 = Satir2 + ' ' + KatNo; }

    if (Semt != '') { Satir3 = Satir3 + Semt; }
    if (IlceAdi != '0' && IlceAdi != '') { Satir3 = Satir3 + ' ' + IlceAdi; }
    if (IlAdi != '0' && IlAdi != '') { Satir3 = Satir3 + ' / ' + IlAdi; }

    Satir1 = Satir1.Trim();
    Satir2 = Satir2.Trim();
    Satir3 = Satir3.Trim();
    if (Satir1 != '') { Adres = Adres + Satir1 + '\n' }
    if (Satir2 != '') { Adres = Adres + Satir2 + '\n' }
    if (Satir3 != '') { Adres = Adres + Satir3 }

    Adres = Adres.Trim();
    Adres = Adres.replace(/  /g, ' ');
    Adres = Adres.replace(/  /g, ' ');
    Adres = Adres.replace(/</g, '');
    Adres = Adres.replace(/>/g, '');
    document.getElementById(PreID + 'TBAdres').value = Adres;
}