// JavaScript Document
function homepage()
{ 
	if(navigator.appName == 'Microsoft Internet Explorer')
	{
		document.body.style.behavior='url(#default#homepage)';
		document.body.setHomePage('http://www.lifestyleshopping.it');
	}
	else
		alert("Funzione abilitata solo per Internet Explorer");
}

function addbookmark()
{

	if(navigator.appName == 'Opera')
	{
		alert("Il tuo browser non supporta questa funzione Premere Ctrl+d");
	}	
	else if (document.all)
		window.external.AddFavorite("http://www.lifestyleshopping.it","Lifestyle Shopping");
	else if (window.sidebar)
		window.sidebar.addPanel("Lifestyle Shopping","http://www.lifestyleshopping.it","");
	else
		alert("Il tuo browser non supporta questa funzione");
}
