﻿function addbookmark()
{
	var url = "http://Live24.co.il";

	var title = "Live24.co.il"
	if (window.sidebar)
	{
		return window.sidebar.addPanel(title, url, '' );
	}
	else if( document.all )
	{
		window.external.AddFavorite( url, title);
	}
	else if( window.opera && window.print )
	{
		return true;
	}
}

function setHomePage(obj){
	var isIE = document.all ? true:false;
	var isNS6 = (document.getElementById && !isIE) ? true:false;
	var isOther = (!isIE && !isNS6);
	var link = document.getElementById('homepage');
	var stylesh = '<style type=text/css>'
		+'BODY{	background: #5E0B5E;'
		+'FONT-FAMILY: Verdana, Arial, Helvetica, Geneva, sans-serif;'
		+'FONT-SIZE: 12px;'
		+'color: #ffffff;}'
		+'A:link, A:visited, A:active {color:#ffffff;}'
		+'.purplebuttontext{'
		+'COLOR: #ffffff;'
		+'FONT-WEIGHT: bold;'
		+'FONT-SIZE: 10px;'
		+'LINE-HEIGHT: 10px;'
		+'FONT-FAMILY: Verdana, Arial, Helvetica, Geneva, sans-serif;'
		+'TEXT-DECORATION: none}'
		+'a.purplebutton{'
		+'padding: 1px 6px 1px 6px;'
		+'border: 2px outset #A27EA8;'
		+'background: #762299;'
		+'COLOR: #ffffff;'
		+'text-decoration: none;'
		+'height: 19px;'
		+'vertical-align: middle;'
		+'}'
		+'a.purplebutton:focus, a.purplebutton:hover{'
		+'border: 2px inset #A95AB7;'
		+'vertical-align: middle;'
		+'background: #762299; '
		+'color: #CDB3D1;'
		+'text-decoration: none;}'
		+'</style>';
	var closewin = '<TABLE width="100%"><tr><td class="purplebuttontext" align="right"><a href="#" class="purplebutton" onClick="window.close();">Close Window</a></td></tr></table>';
  	if(isIE){ 
		eval("link.style.behavior=\'url(#default#homepage)\';");
		eval("link.setHomePage(\'http://Live24.co.il\');");
	}
	// If its Netscape 6, tell user to drag link onto Home button
	else if(isNS6) {
		var win = window.open('','HomePage','width=280,height=160');
		win.document.write(stylesh+'Drag this <A ondrag="window.close();" HREF="http://Live24.co.il">Live24.co.il<A> link onto your Home button to make this your Home Page'+closewin);
	}
	else {
		var win = window.open('','HomePage','width=280,height=160');
		win.document.write(stylesh+'<b>Make this site your home page:</b><br>- Go to <b>Preferences</b> in the <B>Edit</B> Menu.<br>- Choose <b>Navigator</b> from the list on the left.<br>- Click on the <b>"Use Current Page"</b> button.<p>'+closewin);
	}
}


