
// common.js
// Geoff Pack, June 2006

// popups for audio players */

function openPlayer(url,name,width,height) {
	//var features = 'scrollbars=auto,resizeable=yes,toolbar=yes,location=yes,menubar=yes,status=yes,width=' + width + ',height=' + height + '';
	var features = 'scrollbars=no,resizable=yes,width=' + width + ',height=' + height + '';
	window.open(url,name,features);
	return false;
}
