<!--
//------------------------------------------------------------------------------------------------------------------------------------------------------
function popup(url,width,height)
	{
	var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no,navigation toolbar=no,status=no, top=0, left=0');
	Win.focus() ;
	}

function popimage(imagen,my_width,my_height)
	{
	 if(typeof(imagepop)!='undefined')
	 	imagepop.close();

	imagepop=window.open('popimage.php?image='+imagen+'&width='+my_width+'&height='+my_height,'imagepop','status=no,menubars=no,width='+my_width+',height='+my_height+',resize=no,scrollbars=no,top=70,left=70')
		 imagepop.focus();
	}
//------------------------------------------------------------------------------------------------------------------------------------------------------


function focus_enter(campo) {
        //Se il campo è di tipo testuale
        if ((campo == 'email' && (document.getElementById(campo).value == 'Indirizzo email' || document.getElementById(campo).value == 'Controllare email' || document.getElementById(campo).value == 'Email presente' || document.getElementById(campo).value == 'Iscrizione avvenuta')) || (campo == 'cerca' && document.getElementById(campo).value == 'Inserisci modello')){
        //Se il campo è di tipo password
        if (campo == 'password'){
            var newInput = document.createElement('input');
            var input = document.getElementById(campo);
            newInput.type = 'password'; // that should work even with IE
            newInput.id = input.id;
            newInput.name = input.name;
            newInput.onblur = function () {blur_enter(campo);};
            newInput.onfocus = function () {focus_enter(campo);};
            //newInput.style.fontStyle = 'italic';
            //newInput.value = newInput.defaultValue = document.getElementById(campo).value;
            input.parentNode.replaceChild(newInput, input);
            document.getElementById(campo).focus();
            //document.getElementById(campo).type = 'password';
        }
        document.getElementById(campo).value = '';
        if(document.getElementById(campo).className == 'mailing_errore' || document.getElementById(campo).className == 'mailing_ok')
          document.getElementById(campo).className = '';
        document.getElementById(campo).style.color = '#4a4a4a';
        document.getElementById(campo).style.fontStyle = 'normal';
        //focus(document.getElementById(campo));
    }
}
function blur_enter(campo) {
    if (document.getElementById(campo).value == ''){
        var valore = '';
        if (campo == 'password') valore = 'Password';
        if (campo == 'email') valore = 'Indirizzo email';
        if (campo == 'cerca') valore = 'Inserisci modello';
        //if (campo == 'password') document.getElementById(campo).type = 'text';

        if (campo == 'password') {
            var newInput = document.createElement('input');
            var input = document.getElementById(campo);
            newInput.type = 'text'; // that should work even with IE
            newInput.id = input.id;
            newInput.name = input.name;
            newInput.onblur = function () {blur_enter(campo);};
            newInput.onfocus = function () {focus_enter(campo);};
            //newInput.style.fontStyle = 'italic';
            //newInput.value = newInput.defaultValue = document.getElementById(campo).value;
            input.parentNode.replaceChild(newInput, input);
            //document.getElementById(campo).type = 'password';
        }

        document.getElementById(campo).style.color = '#afafae';
        document.getElementById(campo).style.fontStyle = 'normal';
        document.getElementById(campo).value = valore;
    }
}



//AJAX
//------------------------------------------------------------------------------------------------------------------------------------------------------
var xmlHttp=assegnaXMLHttpRequest()

//prende un elemento con id univoco
function prendiElementoDaId(id_elemento)
	{
	var elemento;
	if(document.getElementById)
		elemento = document.getElementById(id_elemento);
	else
		elemento = document.all[id_elemento];
	return elemento;
	};


//assegna un oggetto XMLHttpRequest
function assegnaXMLHttpRequest()
	{
	var
	XHR = null,
	browserUtente = navigator.userAgent.toUpperCase();

	if(typeof(XMLHttpRequest) === "function" || typeof(XMLHttpRequest) === "object")
		XHR = new XMLHttpRequest();
	else if(window.ActiveXObject && browserUtente.indexOf("MSIE 4") < 0)
		{
		if(browserUtente.indexOf("MSIE 5") < 0)
			XHR = new ActiveXObject("Msxml2.XMLHTTP");
		else
			XHR = new ActiveXObject("Microsoft.XMLHTTP");
		}
	if (XHR==null)
		{
		alert ("Browser does not support HTTP Request")
		return
		}

	return XHR;
	};





// funzione nascondi div
function nascondi(voce, secondi)
	{
	//var elemento = document.getElementById(voce);
	var elemento = prendiElementoDaId(voce);

	var mioHandler = function()
		{
		//nasconde elemento
		if (elemento.style.visibility == '')
			{
			elemento.style.visibility = 'hidden';
			elemento.style.display = 'none';
			}
		};

	setTimeout(mioHandler, (secondi*1000));
	}
// funzione nascondi classe
function nascondi_class(voce, secondi)
	{
	//var elemento = document.getElementById(voce);
	var elemento = document.getElementsByName(voce);

	var mioHandler = function()
		{
		if (elemento[0].className == 'mailing_ok')
			elemento[0].className = '';
		if (elemento[0].value == 'Iscrizione avvenuta')
			elemento[0].value = 'Indirizzo email';
		};

	setTimeout(mioHandler, (secondi*1000));
	}

//------------------------------------------------------------------------------------------------------------------------------------------------------



// OGGETTI / ARRAY (ajax)
//------------------------------------------------------------------------------------------------------------------------------------------------------

//oggetto di verifica stato
var readyState = {
	INATTIVO:	0,
	INIZIALIZZATO:	1,
	RICHIESTA:	2,
	RISPOSTA:	3,
	COMPLETATO:	4
};

//array descrittivo dei codici restituiti dal server (per evitare problemi con vecchi browsers)
var statusText = new Array();
statusText[100] = "Continue";
statusText[101] = "Switching Protocols";
statusText[200] = "OK";
statusText[201] = "Created";
statusText[202] = "Accepted";
statusText[203] = "Non-Authoritative Information";
statusText[204] = "No Content";
statusText[205] = "Reset Content";
statusText[206] = "Partial Content";
statusText[300] = "Multiple Choices";
statusText[301] = "Moved Permanently";
statusText[302] = "Found";
statusText[303] = "See Other";
statusText[304] = "Not Modified";
statusText[305] = "Use Proxy";
statusText[306] = "(unused, but reserved)";
statusText[307] = "Temporary Redirect";
statusText[400] = "Bad Request";
statusText[401] = "Unauthorized";
statusText[402] = "Payment Required";
statusText[403] = "Forbidden";
statusText[404] = "Not Found";
statusText[405] = "Method Not Allowed";
statusText[406] = "Not Acceptable";
statusText[407] = "Proxy Authentication Required";
statusText[408] = "Request Timeout";
statusText[409] = "Conflict";
statusText[410] = "Gone";
statusText[411] = "Length Required";
statusText[412] = "Precondition Failed";
statusText[413] = "Request Entity Too Large";
statusText[414] = "Request-URI Too Long";
statusText[415] = "Unsupported Media Type";
statusText[416] = "Requested Range Not Satisfiable";
statusText[417] = "Expectation Failed";
statusText[500] = "Internal Server Error";
statusText[501] = "Not Implemented";
statusText[502] = "Bad Gateway";
statusText[503] = "Service Unavailable";
statusText[504] = "Gateway Timeout";
statusText[505] = "HTTP Version Not Supported";
statusText[509] = "Bandwidth Limit Exceeded";

//------------------------------------------------------------------------------------------------------------------------------------------------------

function Apri(str,nome,width,height) {
    window.open(str, nome, 'width='+width+',height='+height+',scrollbars=yes,status=no,location=no,toolbar=no');
}

//-->

