window.onload = function() {
    var links = document.getElementsByTagName('a');
    for (var i=0;i < links.length;i++) {
        if (links[i].className == 'nw') {
            links[i].onclick = function() {
                window.open(this.href);
                return false;
            };
        }
    }
};

function makelink( name, domain, desc, pre, post ) {
    if ( pre != null && pre != "" )
        document.write( pre );
    
    document.write( '<a 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 );
}

function PopupCentrata(img_nome,img_width,img_height) {
	var w = img_width + 20;
	var h = img_height + 20;
	var l = Math.floor((screen.width-w)/2);
	var t = Math.floor((screen.height-h)/2);
	window.open("./files/paoletti/"+img_nome+".jpg","","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}

// function PopupCentrata() {
//   var w = 400;
//   var h = 250;
//   var l = Math.floor((screen.width-w)/2);
//   var t = Math.floor((screen.height-h)/2);
//      window.open("mioFile.htm","","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
// }
