//Empty address
function ZipLocation(){
}
ZipLocation.prototype.location="";
ZipLocation.prototype.city="";
ZipLocation.prototype.prefecture="";
ZipLocation.prototype.prefectureId="";
ZipLocation.prototype.zip="";
ZipLocation.prototype.loadJSON= function (str)
{
    var o= eval('('+str+')');
    for(p in this)
        {
            if(o[p])
                this[p]=o[p];
        }
}

function Mover(){
}

Mover.prototype.active="";
Mover.prototype.display="";
Mover.prototype.loadJSON= function (str)
{
    var o= eval('('+str+')');
    for(p in this)
        {
            if(o[p])
                this[p]=o[p];
        }
}
