document.write('<meta http-equiv="imagetoolbar" content="no" />');

//----- 1-20-05 addition to remove drag and select 

if(document.getElementById){if((parent.frames.length>0)&&(document.body.clientWidth<310||document.body.clientHeight<70)){document.getElementById("ykF2ML").style.visibility='hidden'}}
 
function dno(a){
	return false;
}
function omd(e){
	if(e.which==1){
		window.captureEvents(Event.MOUSEMOVE);
		window.onmousemove=dno;
	}
}
function omu(e){
	if(e.which==1){
		window.releaseEvents(Event.MOUSEMOVE);
		window.onmousemove=null;
	}
}
if(document.all){
	document.onselectstart=dno;
	document.ondragstart=dno;
}
if(document.layers){
	window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN);
	window.onmousedown=omd;
	window.onmouseup=omu;
}
if(document.getElementById&&!document.all){
	document.onmousedown=dno;
}

//-- end addition 1-20-05

function right(e) {
// for netscape browsers
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else 
// end netscape browsers
if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("You cannot take content without permission!!! \nPlease E-Mail 'webmaster@lloydmats.com' \nto place a request for artwork");
return false;
}
return true;
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

document.oncontextmenu = disableRightClick;
function disableRightClick() {
return false;
}
//<body ondragstart="return false" onselectstart="return false"> 