// JavaScript Document
<!--
var popUpWin0 = 0;
var popUpWin1 = 0;
var popUpWin2 = 0;
var popUpWin3 = 0;

function openRadio()
{
	var left = 100;
	var top = 100;
	var width = 270;
	var height = 310;
	var URLStr = "radio.php";
  
  if( popUpWin0 ) {
		if( !popUpWin0.closed ) popUpWin0.close();
  }
  popUpWin0 = open( URLStr, 'popUpWin0', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'' );
}

function apricommento( id ) {
	var left = 100;
	var top = 100;
	var width = 550;
	var height = 500;
	var URLStr = "commento.php?id="+id;
  
	if( popUpWin1 ) {
		if( !popUpWin1.closed ) popUpWin1.close();
	}
	popUpWin1 = open( URLStr, 'popUpWin1', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top );
}

function visualizzacommento( id ) {
	var left = 100;
	var top = 100;
	var width = 550;
	var height = 500;
	var URLStr = "visualizzacommenti.php?id="+id;
  
	if( popUpWin2 ) {
		if( !popUpWin2.closed ) popUpWin2.close();
	}
	popUpWin2 = open( URLStr, 'popUpWin2', 'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+',scrollbars=yes');
}

function stampa( id ) {
	var left = 100;
	var top = 30;
	var width = 1;
	var height = 1;
	var URLStr = "stampa.php?id="+id;
	
	if( popUpWin3 ) {
		if( !popUpWin3.closed ) popUpWin3.close();
	}
	popUpWin3 = open( URLStr, 'popUpWin3', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top );
}