function HTTP()
{
this.toString = function() { return "HTTP"; }
this.status = function(_status)
{
switch(_status)
{
case 200:
return "success";
break;
case 404:
return "File not found.";
break;
default:
return "HTTP Status: " + _status;
}
}
}