function properties(propertiesid) {
   w=770;
   h=450;
   l=((screen.width-w)/2);
   t=((screen.height-h)/2);
   dimensioni="width="+w+",height="+h+",left="+l+",top="+t+",";
   parametri="directory=yes, location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, toolbar=no, fullscreen=no";
   window.open("se-properties.asp?propertiesid="+propertiesid,"se",dimensioni+parametri);
}
function allegaCV(id) {
   w=500-11;
   h=350-58;
   l=((screen.width-w)/2);
   t=((screen.height-h)/2);
   dimensioni="width="+w+",height="+h+",left="+l+",top="+t+",";
   parametri="directory=yes, location=no, menubar=no, resizable=yes, scrollbars=no, status=no, toolbar=no, fullscreen=no";
   window.open("curriculum-scegli-cv.asp?id="+id,"cv",dimensioni+parametri);
}
function TAlimit(s) {
var maxlength = 255; // Change number to your max length.
if (s.value.length > maxlength) 
s.value = s.value.substring(0,maxlength);
}
function popup(url,w,h) {
   l=((screen.width-w)/2);
   t=((screen.height-h)/2);
   w=w-11;
   h=h-58;
   dimensioni="width="+w+",height="+h+",left="+l+",top="+t+",";
   parametri="directory=yes, location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, toolbar=no, fullscreen=no";
   window.open(url,"sepopup",dimensioni+parametri);
}