The first argument should be a reference (to an input object/element), not a string.
So remove the quotes in the first argument to make that ok. In the second argument you need to escape the quotes inside the string so they don't end the outer string, like this:
Btw, depending on which HTML version you aim to use, the align attribute might not validate.
Also, I think I saw a post in another forum where someone had problems when trying to change an img tag's src attribute after it was created with an empty src. Putting the url to a 1x1px blank image helped tho. Depending on how you intend to use the image, an alt attribute should also be used. XHTML won't validate without it I think.
Btw, if document.vbform.mess doesn't work, give the textarea the id="mess" and use document.getElementById(\"mess\") there instead.