var SECURE= {
    frm: {},
    
    init: function()
    {
                    this.frm = document.frm;
                this.setInputSecureData();
        this.setFormAction();        
    },
    
    findActionForm: function()
    {
        var nodes = document.body.getElementsByTagName('form');
        for(i=0; i<nodes.length; i++) {
            if(nodes[i].action == '') {                
                return nodes[i]; 
            }            
        }
    },
    
    setFormAction: function()
    {
        this.frm.action = 'https://login2.simplexi.com/echosting/shop21.php?secure=on&return_url=http://www.sunsmall.co.kr/Front/Member/?url=Regist';
    },    
    
    setInputSecureData: function()
    {
        var node = document.createElement('div');
        node.style.display = 'none';
        node.innerHTML = '<input type="hidden" name="EC_SECURE_DATA" value="df608c44061157f1771c3d4f8d3a808760591f119449bf9bd6e2087e903e44bd^||^3230313030393130363633" />';        
        this.frm.appendChild(node);
    }
}

SECURE.init();