function openWeblink(url,target,width) {
  if (!width) width = '720';
  var newWindow;
  newWindow = window.open(url,target,'width='+width+',height=550,status,resizable,notitlebar,notoolbar,noscrollbars');
  newWindow.focus();
}
