function processSignup()
{
		var args = parseQuery(location.search.substring(1));
		var msg = '<font color=red>ERROR:<br>';
		var i=0;
		for (var x in args)
		{
			i++;
			msg = msg + args[x];
			//document.write('<font color=red>' + args[x] + '</font>');
		}
		msg += '<p>Please correct the errors to proceed</font>';
		if (i==0) {return};
		document.write(msg);
}
