// cms_script.js
// Javascript functions for the Baylor CMS
// Initial: Colin W., 8/3/03

function popup_window(url)
	{
	newwin=window.open(url,'Popup','personalbar=no,scrollbars=yes,resizable=yes,toolbar=no,height=500,width=525');
	newwin.focus();
	}

function demo_window()
	{
	demowin=window.open('/CAPA/demoset.html','Popup','personalbar=no,scrollbars=yes,resizable=yes,toolbar=no,height=600,width=800');
	demowin.focus();
	}
