// codice per il popup dei costi tim vodafone wind
	function popup(str) {
        searchWin = window.open(str,'esempio','scrollbars=yes,resizable=no,width=380,height=400,status=no,location=no,toolbar=no');
	}

// codice per il popup della newsletter
function esempio(str) {
        searchWin = window.open(str,'esempio','scrollbars=yes,resizable=no,width=360,height=280,status=no,location=no,toolbar=no');
}



// codice per il preview suonerie
	ver = parseInt(navigator.appVersion);
	enablePlay = (ver>3 && navigator.appName=='Microsoft Internet Explorer') ? 1 : 0;

	function ascolta(fileName) {
		//preview.document.body.style.cursor = 'Wait';
		if(enablePlay) {
			if (preview.document.all['BGSOUND_ID'].src=='') {
				preview.document.all['BGSOUND_ID'].src = fileName;
			}
			else {
				if (preview.document.all['BGSOUND_ID'].src!=fileName) {
					preview.document.all['BGSOUND_ID'].src = fileName;
				}
				else {
					preview.document.all['BGSOUND_ID'].src = '';
					}
				}
			}
		}
