/* 2sic changed - select content disabled by 2pas */
/*function disableselect(e){
return false
}
function reEnable(){
return true
}

var Browser = '';
if (navigator.appName.indexOf('Microsoft') != -1)
Browser = 'IE';

if (Browser == 'IE')
{
	document.onselectstart=disableselect;
	if (window.sidebar){
		document.onmousedown=disableselect
		document.onclick=reEnable
	}
} else {
	document.body.setAttribute('style', '-moz-user-focus: ignore; -moz-user-input: enabled; -moz-user-select: none;')
}

*/



/* Context */
/*document.oncontextmenu=new Function("return false");*/