/*  Prevent Selection Script: This script and many more are available free online at The JavaScript Source!! http://javascript.internet.com  */

<!-- Begin

function disableselect(e){
    if (e.target.type == "text") { return true; }
    if (e.target.type == "textarea") { return true; }
    if (e.target.type == "submit") { return true; }
    if (e.target.type == "checkbox") { return true; }
    if (e.target.type == "radio") { return true; }
    if (e.target.type == "password") { return true; }
	return false;
}

function reEnable(){
	return true;
}

document.onselectstart = new Function ("return false");
if (window.sidebar){
document.onmousedown=disableselect;
document.onclick=reEnable;
}

// End -->
