function NoSelect(element) {
	element.onselectstart = function () { return false; } // ie
	element.onmousedown = function () { return false; } // mozilla
}