function myEventIE(){ // InternetExplorer—p
	if(event.button == 2){ 
		alert("Copyright (C) 2003-2006 Dream Creator International All rights reserved.");
	}
}

function myEventNN(myEvent){ // NetscapeNavi—p
	if(myEvent.which == 3){ 
		alert("Copyright (C) 2003-2006 Dream Creator International All rights reserved.");
	return false;
	}
}

if(document.all){ // InternetExplorer—p
	document.onmousedown = myEventIE ;
}
if(document.layers){ // NetscapeNavi—p
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown = myEventNN ;
}
