function redisable(e) { //NS
  return false;
}

function reenable() { //NS
  return true;
}

if (window.sidebar) { //NS
  document.onmousedown=disableselect;
  document.onclick=reenable;
}

document.onselectstart=new Function ("return false"); //IE

function enableselect() {
  document.onselectstart=new Function ("return true"); //IE
//  document.onmousedown=reenable; //NS
}

function disableselect() {
  document.onselectstart=new Function ("return false"); //IE
//  document.onmousedown=redisable; //NS
}

function addToFavorites() {
	if ((navigator.appName == 'Microsoft Internet Explorer') && parseInt(navigator.appVersion)>=4) {
		window.external.AddFavorite('http://www.a-x.pl','AX - koszulki, bluzki damskie, bluzy z kapturem, naszywki');
	} else {
		var msg = 'Dodaj stronę do ulubionych ręcznie...';
		if (navigator.appName == 'Netscape') msg += ' lub kombinacją klawiszy (CTRL+D)';
		window.alert(msg);
	}
}

