/**
AUTHOR	:	GUGULETHU NTOMBELA
DATE	:	06 - 10 - 04
SCRIPT	:	DISABLE SELECT
WEBSITE	:	africanwildlifephotos.co.za
*****************Copyright reserved:GetWebCentre******************
**/
	function disableSelect(e)
	{
		return false
	}
	function reenableSelect()
	{
		return true
	}
	//if IE4+
	document.onselectstart	=	new Function ("return false")
	document.oncontextmenu	=	new Function ("return false")
	//if NS6
	if (window.sidebar){
		document.onmousedown	=	disableSelect
		document.onclick	=	reenableSelect
	}
//end of Disable.....