<!-- Begin

function syllabus()
{
var mousex = window.event.x;        
var mousey = window.event.y;

add.value="All about CEE 755/855 class -\nincluding core information, course\ndescription, grading policy, required\nreferences, class logistics, and course\ntimeline.";
add.style.height=80;
add.style.width=240;
add.style.left=mousex-150;
add.style.top=mousey-100;
}

function timeline()
{
var mousex = window.event.x;        
var mousey = window.event.y;

add.value=" When, What, How\nand Where";
add.style.height=40;
add.style.width=120;
add.style.left=mousex-50;
add.style.top=mousey-50;
}

function homework()
{
var mousex = window.event.x;        
var mousey = window.event.y;

add.value="List of homeworks and\nother assignments\n (with deadlines, of course).\n\n Make a habit to check this\nlink regularly.";
add.style.height=100;
add.style.width=170;
add.style.left=mousex-50;
add.style.top=mousey-120;
}

function material()
{
var mousex = window.event.x;        
var mousey = window.event.y;

add.value=" List of supplementary\nreading assignments";
add.style.height=50;
add.style.width=140;
add.style.left=mousex-50;
add.style.top=mousey-80;
}

function project()
{
var mousex = window.event.x;        
var mousey = window.event.y;

add.value=" \"Pluralitas non ponenda\nest sine necessitate\"\n\n Detailed guideline on\nyour class project.\n\n**Must Read**";
add.style.height=120;
add.style.width=160;
add.style.left=mousex-90;
add.style.top=mousey-120;
}

function review()
{
var mousex = window.event.x;        
var mousey = window.event.y;

add.value="Detailed guideline on\nyour article reviews.\n\n**Must Read**";
add.style.height=80;
add.style.width=150;
add.style.left=mousex-60;
add.style.top=mousey-90;
}


function grade()
{
var mousex = window.event.x;        
var mousey = window.event.y;

add.value="Your latest cumulative grades\nof exams, homeworks, reviews\nand project -- dynamically updated";
add.style.height=60;
add.style.width=220;
add.style.left=mousex-100;
add.style.top=mousey-80;
}


function dis()
{
var mousex = 0;
var mousey = 0;

add.value="";
add.style.height=0;
add.style.width=0;

}
//  End -->

