function edit(pageid,boxid,arc,stile,editgrant) {
   w=900;
   h=650;
   l=((screen.width-w)/2);
   t=((screen.height-h-100)/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-editor-edit.asp?pageid="+pageid+"&boxid="+boxid+"&arc="+arc+"&stile="+stile+"&editgrant="+editgrant,"editor",dimensioni+parametri);
}

function browse(dir) {
   w=800;
   h=500;
   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-editor-browse.asp?dir="+dir,"browse",dimensioni+parametri);
}

function upload_img() {
   w=800;
   h=500;
   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-editor-img-scegli.asp","browse",dimensioni+parametri);
}

function immagine(filename) { 
	document.imageform.src.value = filename;
	//alert("filename");
}


