function addBookmark() {
  var url = 'http://www.wallashops.co.il';
  var title = "וואלה! שופס";
  if (window.sidebar) // Mozilla Firefox Bookmark	
    window.sidebar.addPanel(title, url, "");
  else if (window.external) // IE Favorite
    window.external.AddFavorite( url, title);
}

function browserDetect(text) {
   str = (navigator.userAgent.toLowerCase()).indexOf(text) + 1;
   data = text;
   return str;
}

function set_onFocus()
{
	var links = document.getElementsByTagName('A');
	for(i=0;i<links.length; i++)
		links[i].setAttribute("onfocus", "blur()");
}
window.onload = set_onFocus;

function footerBrowser(place)
{
	if(place=='lcd')
	{
		if(browserDetect('firefox')) document.write("LCD-טלוויזיות, פלזמות ו");
		else if(browserDetect('msie')) document.write("טלוויזיות, פלזמות ו-LCD");
	}
	else if(place=='dvd')
	{
		if(browserDetect('firefox')) document.write("DVD-כלי נגינה, מוסיקה ו");
		else if(browserDetect('msie')) document.write("כלי נגינה, מוסיקה ו-DVD");
	}
	else if(place=='mp3')
	{
		if(browserDetect('firefox')) document.write("ומולטימדיה MP3 נגני");
		else if(browserDetect('msie')) document.write("נגני MP3 ומולטימדיה");
	}
}
