To answer your questions:
1) Hmmm if all the files are in the same directory, simply specifying 'Content_home.htm' should work. Without knowing more about the structure of your directories, however, it's hard to say.
2) The code below within function "displaysplash()" controls the vertical position of the messages (default: centered):
Code:
sc_cross.style.top=ns6?parseInt(window.pageYOffset)+parseInt(window.innerHeight)/2-sc_cross.offsetHeight/2 : document.body.scrollTop+document.body.clientHeight/2-sc_cross.offsetHeight/2
To move it up then, you can modify it to something like:
Code:
sc_cross.style.top=ns6?parseInt(window.pageYOffset)+40 : document.body.scrollTop+40
Change 40 to a larger or smaller number to increase/decrease the offset.
Bookmarks