﻿// File JScript

function Modifica(id,tipo)
{
//alert(tipo);
window.open("intranet/modifica.aspx?tipo="+tipo+"&id="+id,null,"height=300,width=400,status=yes,toolbar=no,menubar=no,location=no");


}

 
function OpenWindow(address, heigth, width, title)   
{   
var winl = (screen.width-width)/2;   
var wint = (screen.height-heigth)/2;   
var options = "width=" + width;   
options += ",height=" + heigth;   
//options += ",top=" + wint;   
//options += ",left=" + winl;   
options += ",location=no,toolbar=no, menubar=no, scrollbars=1, resizable";   
  
//window.open(address, title, options);   
window.open(address,null,"height=300,width=400,status=yes,toolbar=no,menubar=no,location=no");

}   


