/*
File Name:
   scripts/openwin.js
File Author:
   Joe Morrow <j-morrow@northwestern.edu>
Last Updated:
   12:25 PM 4/14/2005 JOE
*/


function openwin(page, szWidth, szHeight) {
   var newURL = page;
   newWin = window.open(newURL, '', 'width=' + szWidth + ',height=' + szHeight + ',directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=yes', '');
}

