document.body.onselectstart = function x() { 

  var thispage=window.location.href;
  var i = thispage.indexOf('admin/default.asp')
  if (i > 0) {
  	return true;
  } else {
	return false; 
  }

}

