<!--ERK Universal DISABLE TEXT SELECT Remote Javascript Reference for Sites on the HolidayHouseGifts Server-->

/* REMEMBER FOR THIS TO WORK, THIS NEEDS TO BE PLACED IN THE FOOTER OF THE PAGE
<!--ERK DISABLE TEXT SELECT FOOTER-->
<script type="text/javascript">
disableSelection(document.body) 
</script>
*/

function disableSelection(target){
 
if (typeof target.onselectstart!="undefined") //IE route
 
target.onselectstart=function(){return false}
 
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
 
target.style.MozUserSelect="none"
 
else //All other route
 
target.onmousedown=function(){return false}
 
target.style.cursor = "default"}