// display the search string (error message from CGI) in an alert box

var ss = location.search.substring(1);
ss = ss.replace (/%20/g, ' ');
if (ss) alert (ss + '\n\n' + 'Please report this message to dfov@kgweb.org.au');

