<!--
function opendescription(subject,cournum)
{
  var courswindow= window.open('','cours', 'location=no,toolbar=no,status=no,directories=no,scrollbars=1,resizable=0,width=575,height=400, screenX=0, screenY=0');

  courswindow.document.open();
  courswindow.document.writeln("<html>");
  courswindow.document.writeln("<head>");
  courswindow.document.writeln("<title>Marist College - Office of the Registrar</title>");
  courswindow.document.writeln("</head>");
  courswindow.document.writeln("<frameset framborder=no border=0 rows='*,50'>");

  if (cournum=='')
    courswindow.document.writeln("<frame marginheight=0 marginwidth=0 name='liste' noresize scrolling=auto src='http://www.marist.edu/~courinfo/descriptions/"+subject.toLowerCase()+".html'>");
 else
    courswindow.document.writeln("<frame marginheight=0 marginwidth=0 name='liste' noresize scrolling=auto src='http://www.marist.edu/~courinfo/courdes.cgi?subject="+subject+";cournum="+cournum+"'>");

  courswindow.document.writeln("<frame marginheight=0 marginwidth=0 name='closebar' noresize scrolling=no src='/common/close.html'>");
  courswindow.document.writeln("</frameset>");
  courswindow.document.writeln("</html>");
  courswindow.document.close();
  courswindow.focus();
}
//-->

