// JavaScript Document
<!--
//弹出窗口
function MM_openBrWindow(theURL,winName,features) { //v2.0
  var x,y;
  x=screen.availHeight/2-200;
  y=screen.availWidth/2-265;
  var str;
  features=features+',top='+x+',left='+y+'';
  window.open(theURL,winName,features);
}
//弹出通知浏览窗口
function OpenNotice(theURL,winName,features) { //v2.0
  var x,y;
  x=screen.availHeight/2-300;
  y=screen.availWidth/2-265;
  var str;
  features=features+',top='+x+',left='+y+'';
  window.open(theURL,winName,features);
}
function Tutor(id){
  var x,y;
  var features;
  features='scrollbars=yes,width=530,height=400';
  x=screen.availHeight/2-200;
  y=screen.availWidth/2-265;
  var str;
  features=features+',top='+x+',left='+y+'';
  window.open('tutors/tutordetail.asp?uid='+id,'',features);
	}
//-->
