
function apriPopUp(inValue,inTipo,inCod){
  switch(inValue){
  case 'contatti':
		if(inTipo!='')
  		str='?tipo='+inTipo+'&l='+inCod;
		else
			str='';
  	var r=window.open('../contatti.php'+str,'contatti','width=400,height=300');
  	r.focus();
	break;
	case 'credits':
  	if(inTipo!='')
  		str='?tipo='+inTipo+'&l='+inCod;
		else
			str='';
    var r=window.open('../../credits.php'+str,'credits','width=400,height=200');
    r.focus();
	break;
	case 'info':
    var r=window.open('../info.php#'+inTipo,'credits','width=400,height=250,scrollbars=yes');
    r.focus();
	break;
	case 'privacy':
		if(inTipo!='')
  		str='?tipo='+inTipo+'&l='+inCod;
		else
			str='';
    var r=window.open('../privacy.php'+str,'privacy','width=400,height=350,scrollbars=no');
    r.focus();
	break;
	case 'richiedi':
  	var r=window.open('../richiedi.php','richiedi','width=400,height=350,scrollbars=no');
    r.focus();
	break;
  }
	return false;
}