//function to set as home page function setHomePage(obj) { var isIE = document.all ? true : false; var isNS6 = (document.getElementById && !isIE) ? true : false; var isOther = (!isIE && !isNS6); var link = document.getElementById('setas'); var stylesh = ''; var closewin = '
Close window
'; if (isIE) { eval("link.style.behavior=\'url(#default#homepage)\';"); eval("link.setHomePage(\'http://www.a.co.il');"); } // If its Netscape 6, tell user to drag link onto Home button else if (isNS6) { var win = window.open('', 'HomePage', 'width=180,height=80'); win.document.write(stylesh + 'Drag this link a.co.il
to a Homepage button
to set a homepage' + closewin); } else { var win = window.open('', 'HomePage', 'width=180,height=80'); win.document.write(stylesh + 'Make this site your home page:
- Go to Preferences in the Edit Menu.
- Choose Navigator from the list on the left.
- Click on the "Use Current Page" button.

' + closewin); } }//setHomePage function