//一分間授業紹介の動画へのリンクをポップアップウィンドウで開く
 
function openWin(theURI){
 PopUpWin=window.open(theURI,'theWin','scrollbars=0,width=600,height=400,resizable=1,directories=0,toolbar=0,status=1,location=0');
 PopUpWin.focus();
}

