//Funzioni per creare il dom degli oggetti html 5
document.createElement('header');
document.createElement('section');
document.createElement('article');
document.createElement('nav');
document.createElement('aside');
document.createElement('footer');


//Funzione per visualizzare i box degli annunci e delle regioni nell'homepage


		//Con questa funzione nascondo i box desiderati al caricamento della pagina
		function startmenu()
			{
				document.getElementById('Regioni').style.display = "block";
				document.getElementById('Annunci_Rand').style.display = "none";
				document.getElementById('Ultimi_Annunci').style.display = "none";
			}

		//Nascondo tutti gli elementi
		function Nascondi_Tutto()
			{
				document.getElementById('Regioni').style.display = "none";
				document.getElementById('Annunci_Rand').style.display = "none";
				document.getElementById('Ultimi_Annunci').style.display = "none";
			}

		//Con questa funzione mostro il box desiderato al click sul menù
		function Box(menuId)
			{
				
				if(document.getElementById(menuId).style.display == "none")
					{
						Nascondi_Tutto();
						document.getElementById(menuId).style.display = "block";
					}

				else
					{
						startmenu();
					}
					
			}


/*Funzione conteggio caratteri di un form*/


	//funzione di conteggio caratteri per il descrizione

				var maxchars=500;

				function CheckLength()
  					{
  						with (document.annuncio)
   						 	{
    								chars=descrizione.value
    								if (chars.length > maxchars)
      									{
      										descrizione.value=chars.substr(0,maxchars);
      										descrizione.blur();
      									}
    								chr.value=maxchars-descrizione.value.length;
    							}
 			 		}

/*Fine funzione di conteggio caratteri*/


/*Apri msg*/
function MyWindow()
		{
			window.open('http://www.annuncia.it/Shout/','MyWindow30','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=370,height=320'); 
			return false;
		}
/*Fine Apri msg*/

/*Inserisci Commento*/
function MyComment(Commento)
		{
			window.open("http://www.annuncia.it/SottoDomini/Annunci/Operazioni/Commento.php?IDannuncio="+Commento+"","MyWindowComment","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=340,height=320"); 
			return false;
		}
/*Fine Inserisci Commento*/

/*Invia ad un amico*/
function MyFriend(Annuncio)
		{
			window.open("http://www.annuncia.it/SottoDomini/Annunci/Operazioni/Amico.php?IDannuncio="+Annuncio+"","MyWindowFriend","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=340,height=320"); 
			return false;
		}
/*Fine Invia ad un amico*/

/*Crea Pdf*/
function MyPdf(Annuncio)
		{
			window.open("http://www.annuncia.it/SottoDomini/Annunci/Operazioni/pdf.php?ID="+Annuncio+"","MyWindowPdf","toolbar=yes,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes"); 
			return false;
		}
/*Fine Crea Pdf*/

/*Crea Stampa*/
function MyStampa(Annuncio)
		{
			window.open("http://www.annuncia.it/SottoDomini/Annunci/Operazioni/stampa.php?ID="+Annuncio+"","MyWindowStampa","toolbar=yes,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes"); 
			return false;
		}
/*Fine Versione Stampabile*/


