class emptyFull extends MovieClip { var myURL:String; function emptyFull() { //myURL = ""; this._alpha = 80; } function onRelease() { //trace("getURL: " + myURL); //trace(); getURL(myURL, "_blank"); } function onRollOver() { myURL = this._parent._parent.theMan.currURL; this._alpha = 100; } function onRollOut() { this._alpha = 80; } }