<!--
function openwin(link, x, y) {
  editWin = window.open(link, 'aken1' ,'width='+x+',height='+y+',toolbar=0,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=0,copyhistory=0,screenX=100,screenY=25,left=100,top=25');
  editWin.focus();
}

function openwinscroll(link, x, y) {
  editWin = window.open(link, 'aken2' ,'width='+x+',height='+y+',toolbar=0,directories=0,menubar=1,status=0,resizable=0,location=0,scrollbars=1,copyhistory=0,screenX=100,screenY=25,left=100,top=25');
  editWin.focus();
}

function printwin(link, x, y) {
  editWin = window.open(link, 'printaken','width='+x+',height='+y+',toolbar=0,directories=0,menubar=1,status=0,resizable=1,location=0,scrollbars=1,copyhistory=0,screenX=50,screenY=50,left=50,top=50');
  editWin.focus();
}
// -->