//function gotoDisabled()
//{
//  location.href="http://<%=strHostURL%><%=strRootURL%>/disabled.asp";
//}
if (navigator.javaEnabled()) {
}
else gotoDisabled()

var text="右クリックは使えません"
var nt=0;
var ie=0
if (navigator.appName=="Netscape")
{
  document.captureEvents(Event.MOUSEDOWN);
  nt=1;
}
else
  ie=1

function detect(ev)
{
  if ((nt&&ev.which==1)||(ie&&event.button==1))
	{}
  else 
	setTimeout('alert(text)',1);
}

document.onmousedown=detect;

function windowOpener(strURL)
{
	xWindow1 = window.open('', 'eStudyWindow', 'scrollbars=1,menubar=0,resizable=1,width=760,height=480,top=150,left=200');
	
	xWindow1.location.href = strURL;
}


