function openLink(url) {
	var winName = "akademos" + url.replace(/.*cme(\d+).*/, '$1')
	//alert(winName)
	var hdl = window.open(url, winName, "width=700, height="+.8*screen.height+", scrollbars=1, resizable=1, statusbar=1, menubar=1, location=1")
	if (hdl) {
   	hdl.focus()
      return false
	}
}