var savedHTML;

function show_full_size(id)
{
        savedHTML = document.getElementById("show_img").innerHTML;
	document.getElementById("show_img").innerHTML="<img id=\""+id+"\" src=\"http://www.voyeur-collection.com/images/"+id+".jpg\" alt=\""+id+"\"/>";
}

function show_thumb_size()
{
	document.getElementById("show_img").innerHTML=savedHTML;
}

function send_subscribe()
{
	var http = null;
	if(window.XMLHttpRequest) // Firefox
		http = new XMLHttpRequest();
	else if(window.ActiveXObject) // Internet Explorer
		http = new ActiveXObject("Microsoft.XMLHTTP");
	else
	{ // XMLHttpRequest not supported
 		//alert("Browser not supported");
	}

        var params = "subscribe=&email="+document.mailing.email.value+"&lang="+document.mailing.lang.value;
	http.open("POST", "http://www.voyeur-collection.com/mailer.php", true);
	    
    http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    http.setRequestHeader("Content-length", params.length);
    http.setRequestHeader("Connection", "close");

    http.onreadystatechange = function()
    {//Call a function when the state changes.
        if(http.readyState == 4 && http.status == 200)
        {
            document.getElementById("response").innerHTML = http.responseText;
        }
    }
    http.send(params);        
}