// This script: ©copyright 2005 Maks Smits. All rights reserved.
function doeRedirect(redirectURL){
if (self == top) {
	top.name = self.location.toString();
	top.location.href = redirectURL;
	}
}
