var myJSONObject = [
                        {"code": "login", "left": 0, "top": 800, "width": 472, "height":352},
                        {"code": "join01", "left": 0, "top": 180, "width": 810, "height":583},
						{"code": "idSerch", "left": 0, "top": 0, "width": 400, "height":230},
						{"code": "pwdSerch", "left": 0, "top": 0, "width": 400, "height":230},
                        {"code": "mypage", "left": 0, "top": 0, "width": 810, "height":548},
                        {"code": "shopinfo", "left": 0, "top": 0, "width": 727, "height":562},
                        {"code": "download", "left": 0, "top": 0, "width": 1010, "height":650},
                        {"code": "showroom", "left": 0, "top": 0, "width": 1010, "height":650},
                        {"code": "event", "left": 0, "top": 0, "width": 800, "height":650},
                        {"code": "news", "left": 0, "top": 0, "width": 727, "height":632},
						{"code": "notice", "left": 0, "top": 0, "width": 727, "height":632},
						{"code": "look", "left": 0, "top": 0, "width": 800, "height":650},
                        {"code": "qna", "left": 0, "top": 0, "width": 727, "height":632},
                        {"code": "faq", "left": 0, "top": 0, "width": 727, "height":632},
                        {"code": "store", "left": 0, "top": 0, "width": 414, "height":280}   
                    ];
                    
function getPosition(code)
{
    for (var i = 0; i < myJSONObject.length; i++)
    {
        if (myJSONObject[i].code == code)
        {
            return myJSONObject[i];
            break;
        }
    }
}

