How do you get the image to repeat in x and be fixed using this code?
Also is it posable to combine the two so the image is in the background and the links or on top of it.
function menubar()
{
retVal = "<img src=images/Gorgated_Pipe.jpg>";
return retVal;
}
function TopMenu()
{
retVal =
"<a href=\"index.php\">Home</a> | " +
"<a href=\"aboutus.php\">About Us</a> | " +
"<a href=\"photogallary\">Gallary</a>";
return retVal;
}