OK, here's a link with JavaScript enhancement, along with the other necessary JavaScript info to do what you're wanting:<br>
<br>
<a href='#' onClick="makehomepage(window.location); return false">Click here to set this as you home page</a><br>
<br>
<script language=javascript><br>
<!--<br>
<br>
function makehomepage(url)<br>
{<br>
//Set variable for error messages<br>
var pls=" Please follow the instructions below to set your home page manually.";<br>
<br>
//Detect carrier;<br>
if (navigator.appName== "Netscape" && navigator.appVersion.charat(0) >= 4)<br>
{<br>
<br>
//Set home page<br>
window.onerror=Oops();<br>
netscape.security.PrivilegeManager.enablePrivilege("UniversalPreferencesWrite");<br>
navigator.preference("browser.startup.homepage", home_page_url);<br>
window.onerror=Oops();<br>
alert('Congratulations, your new home page has been set successfully.');<br>
return false;<br>
<br>
//Create function to alert when something doesn't work;<br>
function Oops()<br>
{<br>
instruct("I'm sorry, there was an error while setting your new home page."+pls);<br>
}<br>
<br>
//Create function to alert/redirect when an error occurs;<br>
function instruct(message)<br>
{<br>
alert(message);<br>
window.location.href="/sethomepage.html"<br>
}<br>
} else {<br>
instruct("I'm sorry, your browser does not allow us to set your home page automatically."+pls);<br>
}<br>
<br>
//--><br>
</script><br>
<br>
<br>
Just a note: the only thing missing here is the page: /sethomepage.html<br>
I have left it up to you to create a page that describes how to set your site as a user's home page if you would like, or to simply delete the lines:<br>
window.location.href="/sethomepage.html"<br>
AND<br>
//Set variable for error messages<br>
var pls=" Please follow the instructions below to set your home page manually.";<br>
<br>
From the script if you would rather not make this page.<br>
<br>
Special note:<br>
If you DO delete these lines, you will need to set<br>
var pls = ''<br>
DO NOT just delete the variable declaration as this would lead to HIGHLY UNDESIREABLE effects.<br>
<br>
Feel free to contact me if you need any more assistance.<br>
<br>
-Robherc<br>
<br>
<br>
ICQ#: 34916735<br>
Work E-mail: robherc.work@angelfire.com