function parseIPT(obj) {
	var HD = "IPT_";
	var UMA = Array("OBJECT", "EMBED");
	//var obj = document.getElementById("DIV_IPT");
	var str;
	
	str = obj.innerHTML;
	for(i = 0; i < UMA.length; i++) {
		str = eval("str.replace(/" + HD + UMA[i] +"/g, \"" + UMA[i] + "\");");
	}	
	
	obj.innerHTML = str;
}

// µû¶ó´Ù´Ï´Â top
ScroolTop = function(className, id) {
    this.IE = document.all ? 1 : 0;
    this.NN = document.layer ? 1 : 0;
    this.N6 = document.getElementById ? 1 : 0;
    if(this.IE) this.layer = document.all(id);
    else if(this.NN) this.layer = document.layer[id];
    else if(this.N6) this.layer = document.getElementById(id);
    else return;
    this.className = className;
    this.top = this.oldY = parseInt(this.layer.style.top,10);
    setInterval(this.className + ".move()", 10);
    }
    ScroolTop.prototype.move = function() {
        var diffY = (this.IE) ? document.documentElement.scrollTop+this.top : self.pageYOffset+this.top; // Ç¥ÁØ¿¡´Â document.documentElement.scrollTop
        if(diffY != this.oldY) {
            var percentY = .1 * (diffY - this.oldY);
            percentY = (percentY > 0) ? Math.ceil(percentY) : Math.floor(percentY);
    
            this.oldY += percentY;
            this.layer.style.top = this.oldY + "px";
        }
    }
