function newWin(link,width,height) {
	if (window.open(link.href,"","width="+width+",height="+height+",statusbar,scrollbars,resizable=yes,left=0,top=0")) {
    return true;
  }
  return false;
}

