function CleanengerDelegate() { return this; } CleanengerDelegate.prototype = new Object(); CleanengerDelegate.prototype.Index = function( app ) { print( "Content-type: text/plain\n\n", "Hello from javascript!\n" ); } CleanengerDelegate.prototype.About = function( app ) { print( "Content-type: text/plain\n\n", "About Cleanenger.\n", "This application is cool.\n" ); } CleanengerDelegate.prototype.About_Cleanenger = function( app ) { app.error( "Try just /about instead." ); } 1;