function createOutput() {
	if (top.outputStyle) {
		if (!isNaN(parseInt(top.outputStyle))) {
			var outputArguments = createOutput.arguments;
			var outputStyle = parseInt(top.outputStyle);
			if ((outputArguments.length > 1) &&
			    (outputStyle > 0) &&
			    (outputStyle <= outputArguments.length)) {
				document.write(outputArguments[outputStyle-1]);
			}	
		}
	}
}

