function modalWin(path,name,width,height) {
    if (window.showModalDialog) {
        window.showModalDialog(path,name,"dialogWidth:"+width+",dialogHeight:"+height);
    } else {
        window.open(path,name,"height="+height+",width="+width+",toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no ,modal=yes");
    }
} 