 function getObj(f) {
        this.oForm = f;
        this.oHeight = f.upperheight;
        this.oDepth = f.depth;
        this.oFace = f.face;
        this.oPrice = f.price;
        return this, data(), doSize();
    };


    function data() {
        var siz = oHeight.selectedIndex;
        siz = siz == -1 ? 0 : siz;
        this.dStr = dArr[0][siz];
        oPrice.value = fixP(dStr[oFace.selectedIndex + 1]);
		oForm.faceImg.src = oForm.face[oForm.face.selectedIndex].value;

    };


    function doSize() {
        var daLen = dArr[0].length;
        for (var j = oHeight.options.length - 1; j > 0; j--) {
            oHeight.options[j] = null;
        };
        for (var k = 0; k < daLen; k++) {
            oHeight.options[k] = new Option(dArr[0][k][0] + "\"", dArr[0][k][0]);
        };
        oHeight.selectedIndex = 0;
    };




