/* 
	Author: AloeR@bbs.xjtu.edu.cn 
*/


/*随机函数********************************************************************************/			                      
rnd.today=new Date(); 
rnd.seed=rnd.today.getTime();
function rnd() { 
　rnd.seed = (rnd.seed*9301+49297) % 233280; 
　return rnd.seed/(233280.0); 
}; 
function rand(number) { 
　return Math.ceil(rnd()*number); 
};

/*弹出校长信箱********************************************************************************/			                     
 function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


/*首页弹出窗口********************************************************************************/			                     
function openwin() {
  　window.open ("pop.html", "pg","width=269,height=204,top=75,left=75,location=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no");
  }


