Problem trying to redirect after FLV playback

My flash guy is on vacation this week and I’m trying to figure out a Flash problem on my own. I am trying to have a SWF file redirect the browser to a new page once it completes playback of a FLV file. For whatever reason, I keep getting the following error.

1046: Type was not found or was not a compile-time constant: Void.

Here’s my code:

 
var listenerObject:Object = new Object();
listenerObject.complete = function(eventObject:Object):Void {
    getURL("http://www.URL.com");
};
flv_Intro.addEventListener("complete", listenerObject);

I’m would greatly appreciate any help.