/**
 * QLIB 1.0 Basic Control
 * Serge Dolgov (C) 2002
 * studio.quazzle.com
 */

function QControl_init(parent, name) {
    this.parent = parent || null;
    this.name = (parent && parent.name) ? (parent.name + "." + name) : ("self." + name);
    this.tag = null;
}

function QControl() {
    this.init = QControl_init;
}