﻿function openURL(dest)
{
  windowOPTS=new String('left=5,top=10,width=790,height=410,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=yes');
  www_seesam_ee = window.open(dest, 'www_seesam_ee', windowOPTS);
  www_seesam_ee.focus();
}

function calculatorAction(pageaction, clone) {
 document.calcalus.targetAction.value = pageaction;
 document.calcalus.actionRef.value = clone;
 document.calcalus.submit();
}

function openLink(pos_left, pos_top, pos_width, pos_height, target_win, dest)
{
  windowOPTS=new String('left='+pos_left+',top='+pos_top+',width='+pos_width+',height='+pos_height+',resizable=yes,scrollbars=yes,status=yes,toolbar=yes,menubar=yes,location=yes');
 try {
  new_win = window.open(dest, target_win, windowOPTS);
  new_win.focus();
  }
 catch(e){alert('window open failed');}
}

