You really should not use attributes for display behavior. You should use styles:
body { background-image: url(images/MyBackground.jpg); background-repeat: no-repeat; background-position: top left; }
Probably not a good idea to do this on the body element either - instead create a top level <div> tag and wrap the entire content with this. Reason is that lots of stuff inherits of the body element.
+++ Rick ---
from Maui, Hawaii