function makeHomePage(){
HP="http://www.property-on.com/";
HPText="Make Property-On as your default Home Page?";
n6="Press Enter and Slide this link on your <b>Home Page</b> button";
other='Go to \n1- "Preferences" \n2- "Edit Menu"\n3- Choose "Navigator" in the left list.\n4- Click on "Use Current Page" button';

//Internet explorer
if (document.all){
  document.write('<A HREF="javascript:history.go(0);" onClick="this.style.behavior=\'url(#default#homepage)\';this.setHomePage(HP);">');
}

//Netscape 6
else if (document.getElementById){
  document.write('<a href="'+ HP +'" onClick="alert(n6);">');
}

// Netscape 4 ou -, mettez y les instructions ou rien du tout
else if (document.layers){
  document.write( '<a href="#" onClick="alert(other);">');
}

// other navigators
else {
  document.write( '<a href="#" onClick="alert(other);">');
  }


document.write('<img src="/images/right_homepage_anim.gif" width="165" height="165" border="0"></a>');
}

makeHomePage();