/*********************************************
 *
 * Javascript functions 
 *
 *********************************************/

function openarc(width,height) {
  strdesc = "top=10,left=10,width=" + width + ",height=" + height + ",toolbar=0,menubar=0,location=0,directories=0,resizable=yes";
  open('about:blank', 'archive', strdesc);
}

function openarc1(width,height) {
  strdesc = "top=20,left=50,width=" + width + ",height=" + height + ",toolbar=0,menubar=0,location=0,directories=0,resizable=yes";
  open('about:blank', 'archive', strdesc);
}

