function createPopUp(popUpCode) { 
	var div = document.createElement('div'); 
	div.innerHTML = popUpCode; document.body.appendChild(div.firstChild); 
}
function show1()
   {
		document.getElementById('spot1').style.display = "inline";
		document.getElementById('spot1').style.visibility = 'visible';
   }
function close1()
   {
		javascript:location.reload(true);
   }
   
 function show2()
   {
		document.getElementById('spot2').style.display = "inline";
		document.getElementById('spot2').style.visibility = 'visible';
   }
function close2()
   {
javascript:location.reload(true);

   }
   
 function radioClick(radioObject)
 {
 	var combo = document.attivazioneSpot2.param;
 	
 	for(i=0;i<combo.length;i++)
 	{
	 	if(radioObject.value == combo[i].value.toLowerCase())
	 	{
	 		combo.selectedIndex= i;
	 	}
 	}
 }
 
  function selectChange(value)
 {

 	var form = document.attivazioneSpot1;
 	
 	form.action = "/attivazione/"+value;
 }
  
 function setSegnoZodiacale(radioObject)
 {
	 
 	var combo = document.attivazioneSpot1.param; 
 	for(i=0;i<combo.length;i++)
 	{
	 	if(radioObject == combo[i].value.toLowerCase())
	 	{
	 		combo.selectedIndex= i;
	 	}
 	}
 }
 function showDisclaimer()
 {
		document.getElementById('disclaimer').style.display = "inline";
		document.getElementById('disclaimer').style.visibility = 'visible';
 }