function openScript(url, width, height) 
{
    var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no,status=no, top=0, left=0' ) ;
    Win.focus() ;
}

function openScript2(url, width, height) 
{
    var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no,status=no, top=0, left=0' ) ;
    Win.focus() ;
}

/* Selezione di un valore predefinito in una select */
function setSelectValue( elemID, defValue )
{
    var elem;
    var opt;
    var pos;

    elem = document.getElementById(elemID);        
    for( pos=0; pos < elem.options.length; pos++ )
    {        
        if( elem.options[pos].value == defValue )
        {
            elem.selectedIndex = pos;
            return true ;
        }
    }
    return false ;
}