
function popupJackets(recid) {
	cgiurl="http://www.babbagelab.com/cgi-bin/mlf/jackets.cgi";
	jktwidth=100;
	jktheight=100;
	jktAry=recid.split(",");
	jktCount=jktAry.length;
	params='width='+jktCount*jktwidth+',height='+jktheight+',scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=n	o,left=0,top=0';
	window.open(cgiurl+'?recid='+recid,'popup',params);
	return false;
}

function openWindow(theURL,winName,w,h) {
  var prop="width=" + w + ",height=" + h + ",scrollbars=yes,resizable=yes";
  var openw=window.open(theURL,winName,prop);
  openw.window.focus()
 return false;
}
