var nuova_form;
function ChangeMenu(id, stato)
{
	if (stato.toUpperCase() == "ON")
		colore = "white";
	else
		colore = "";
		
	document.all[id].style.backgroundColor = colore;
	//document.all[id].style.color = "yellow";
} 

function show_form (dim_width, dim_height, nome_foto)
{  
	if (nuova_form) nuova_form.close();
	nuova_form=window.open(nome_foto,"_blank","height="+ dim_height + ",width=" + dim_width + ",resizable=yes,status=yes,toolbar=no");
	nuova_form.focus();
	 return false
}	


function makelink( name, domain, desc, pre, post ) 
{
    if ( pre != null && pre != "" )
        document.write( pre );
    
    document.write( '<a class=menu_articoli style="font-size:10pt;" href="mailto:' );
    document.write( name + '&#64;' );
    document.write( domain + '">' );
    
    if ( desc != null && desc != "" )
        document.write( desc )
    else
        document.write( name + '&#64;' + domain );
    
    document.write( '</a>' );
    
    if ( post != null && post != "" )
        document.write( post );
}