// ##############################
// ###### Script NewViewer ######
// ##############################

function newViewer(viewer,page,width,height) 
  {
	newWindow = window.open(page,viewer,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width='+width+',height='+height);
	newWindow.focus();
  }

