function bookmark()
{
	var i = navigator.userAgent.indexOf("Netscape");
	if(i >= 0)
	{
		alert("Press Ctrl + D to Bookmark this Page");
	}
	else if (window.sidebar) 
	{
		alert("Press Ctrl + D to bookmark");
	}
	else if(window.opera && window.print)
	{ 
		var elem = document.createElement('a');
		elem.setAttribute('href',"http://www.prosonicmedia.com");
		elem.setAttribute('title',document.title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	else if(document.all)
	{
		
		var bookmarkurl="http://www.prosonicmedia.com";
		var bookmarktitle="prosonicmedia.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) 
	{
		alert("Press Ctrl + D to bookmark");
	}
	else if(window.opera && window.print)
	{ 
		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)
	{
		window.external.AddFavorite(window.location, document.title);
	}
	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) 
	{
		alert("Press Ctrl + D to bookmark");
	}
	else if(window.opera && window.print)
	{ 
		var elem = document.createElement('a');
		elem.setAttribute('href',"http://www.prosonicmedia.com");
		elem.setAttribute('title','prosonicmedia.com - Buy Discount Blow Out Electronic Accessories for Cell Phone DVD R DVD-R DVD+R Blue Ray HD Media Flash Drive USB Pen Drive Ink and Toner Cartridge at Price below wholesale');
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	else if(document.all)
	{
		window.external.AddFavorite(window.location, 'prosonicmedia.com - Buy Discount Blow Out Electronic Accessories for Cell Phone DVD R DVD-R DVD+R Blue Ray HD Media Flash Drive USB Pen Drive Ink and Toner Cartridge at Price below wholesale');
	}
	else
	{
		alert("Press Ctrl + D to Bookmark this page");
	}
}


function searchResult()
{
	cat = document.getElementById("searchcategory").value;
	val = document.getElementById("query").value;
	document.getElementById("query").value = cat + " " + val;
	document.searchform.submit();
}*/