function writedate(thedate){
  thedate = new Date(thedate);
  day=thedate.getDate();
  month=thedate.getMonth()+1;
  year=thedate.getFullYear();
  return day+"/"+month+"/"+year;
}
function popup(url, x, y){
  //var url=""+name+".doc";
  var options="toolbar=0,location=0,menubar=0,width=";
  var height = y+40;
  var width = x+20;
  options +=width+",height="+height+",scrollbars=0,left=10,top=10,resize=true"
  window.status=options;
  windowname=window.open(url, "APP", options);
  return;
}
