function stopSelect() {
	  window.event.cancelBubble = true;
	  return false;
	}

document.onselectstart = stopSelect;
//document.oncontextmenu = stopSelect;
document.ondragstart   = stopSelect;
