$(function () {
    if ($('#isOtherAddress').is(":checked")) {
    	$('#otherAddressTable').show();
    } else {
    	$('#otherAddressTable').hide();
    }

    $('#isOtherAddress').click(function (event) {
        if ($(this).is(":checked")) {
        	$('#otherAddressTable').show();
        } else {
        	$('#otherAddressTable').hide();
        }
    });
});

function h(str) {
    return str
        .replace(/&/g, '&amp;')
        .replace(/</g, '&lt;')
        .replace(/>/g, '&gt;')
        .replace(/\"/g, '&quot;');
}

function trim(str) {
    if (str == null) {return null;}
    return str.replace(/^\s+|\s+$/g, "");
}

