function addToFavorites() {
	var title = 'מורן לביאד-סבג, עו"ד';
	var url = 'http://www.laviad-law.co.il';
	if(document.all) {
		window.external.AddFavorite(
			window.document.location,
			title
		); 
	} else {
		if (window.sidebar) {
			window.sidebar.addPanel(
				title, 
				window.document.location,
				""
			);
		} else {
			if(window.opera && window.print) {
				var elem = document.createElement('a');
				elem.setAttribute('href',url);
				elem.setAttribute('title',title);
				elem.setAttribute('rel','sidebar');
				elem.click();
			}
		}
	}
}

function getParam( name )
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}