function bookmark()
{
	var i = navigator.userAgent.indexOf("Netscape");
	if(i >= 0)
	{
		alert("Press Ctrl + D to Bookmark this Page");
	}
	else if (window.sidebar) // firefox
	{
		alert("Press Ctrl + D to bookmark");
	}
	else if(window.opera && window.print)
	{ // opera
		var elem = document.createElement('a');
		elem.setAttribute('href',"http://www.wiredigest.com");
		elem.setAttribute('title','WireDigest.com - Cellular Accessories - iPod MP3 Accessories - DVD R Media - USB Flash Memory Drive - Inkjet Cartridge - Toner Cartridge - Game GPS Accessories');
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	else if(document.all)
	{
		
		var bookmarkurl="http://www.wiredigest.com"
		var bookmarktitle="Wiredigest.com"
		window.external.AddFavorite(bookmarkurl,bookmarktitle)
	}
	else
	{
		alert("Press Ctrl + D to Bookmark this page");
	}
}

function bookmarkitem()
{
	var i = navigator.userAgent.indexOf("Netscape");
	if(i >= 0)
	{
		alert("Press Ctrl + D to Bookmark this Page");
	}
	else if (window.sidebar) // firefox
	{
		alert("Press Ctrl + D to bookmark");
	}
	else if(window.opera && window.print)
	{ // opera
		var elem = document.createElement('a');
		elem.setAttribute('href',document.location);
		elem.setAttribute('title',document.title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	else if(document.all)// ie
	{
		window.external.AddFavorite(window.location, 'www.wiredigest.com - ' + document.title);
	}
	else
	{
		alert("Press Ctrl + D to Bookmark this page");
	}
}
