/*
function chiudiDiv(quale) {
	target = "#"+quale;
    $(target).animate(
    {opacity: 'hide', marginTop: '-120'},
    "slow"
    );
}
function apriDiv(quale) {
	target = "#"+quale;
    $(target).animate(
    {opacity: 'show', marginTop: '-150'},
    "fast"
    );
}

*/

function apriDiv(quale) {
  var stile = "top=0, left=0, width=350, height=350, status=no, menubar=no, toolbar=no scrollbar=no";
    
        window.open("condizioni.html", "", stile);
   
 }