<html><head>
<script language="JavaScript">
//--Funzione per gestire le POPUP
function DoPopUp(URL,Name,X,Y,Center,Resizable,ScrollBars){
if (Center == 'yes'){
var PopUpX = (screen.width/2)-(parseInt(X)/2);
var PopUpY = (screen.height/2)-(parseInt(Y)/2);
var pos = ",left="+PopUpX+",top="+PopUpY;
}else{
var pos = "";
}
PopUpWindow = window.open(URL,Name,'scrollbars='+ScrollBars+',re sizable='+Resizable+',width='+X+',height='+Y+pos);
}
//--------------------------------------------------------------------
</script></head>
<body>
<form name="frm_Object">
<input type="hidden" name="blob_id" id="blob_id" value="uno">
<INPUT TYPE="button" class="puslante" VALUE="Elimina" onclick="javascript

oPopUp('pag_due.htm','','395','210','yes','no','no ')">
</form>
</body></html>