
function formEmail(first)
/************************************************************************/
/* Function takes one argument and returns the result    */
/************************************************************************/
{
var second = 'designersteel';
var third = 'co';
var forth = 'uk';
return first + '@' + second + '.' + third + '.' + forth
};
