function file(fichier)
{
if(window.XMLHttpRequest) // FIREFOX
xhr_object = new XMLHttpRequest();
else if(window.ActiveXObject) // IE
xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
else
return(false);
xhr_object.open("GET", fichier, false);
xhr_object.send(null);
if(xhr_object.readyState == 4) return(xhr_object.responseText);
else return(false);
}

function sendmail() {
	name = document.forms['contact_form'].elements['form_name'].value;
	adress = document.forms['contact_form'].elements['form_email'].value;
	subject = document.forms['contact_form'].elements['form_message'].value;
	if(texte = file('mail.php?n='+escape(name)+'&a='+escape(adress)+'&s='+escape(subject))) {
			document.getElementById('mes_thx').innerHTML = texte;
		scrollpage();
	}
}

function writediv (nom, texte) {
	document.getElementById(nom).innerHTML = texte;
}


function show (block) {
document.getElementById('apropos').style.display = "none";
document.getElementById('portfolio').style.display = "none";
document.getElementById('photos').style.display = "none";
document.getElementById('contact').style.display = "none";
document.getElementById('aproposm').style.display = "block";
document.getElementById('portfoliom').style.display = "block";
document.getElementById('photosm').style.display = "block";
document.getElementById('contactm').style.display = "block";
document.getElementById(block+'m').style.display = "none";
document.getElementById(block).style.display = "block";
}

function unshow (block) {
document.getElementById(block).style.display = "none";
document.getElementById(block+'m').style.display = "block";
}

function Scroller() {
	window.scrollBy(0,10)
}
function scrollpage () {
	var i = 0;
	while (i<33) {
	var tps = 600+i*10;
	setTimeout("Scroller()", tps);
	i++;
	}
}

function port1 () {
var images = '<table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-top:10px;"><tr><td class="port_item" align="center" width="25%"><a href="http://abstractionsurbaines.fr/" target="_blank" class="preview" style="background-image:url(assets/sites/abst.jpg);"></a>Abstractions Urbaines</td><td class="port_item" align="center" width="25%"><a href="http://www.beautiful-id.com/" target="_blank" class="preview" style="background-image:url(assets/sites/bid.jpg);"></a>Beautiful ID</td></tr><tr><td class="port_item" align="center" width="25%"><a href="http://www.bienaimee.biz/" target="_blank" class="preview" style="background-image:url(assets/sites/bienaimee-story-accueil.jpg);"></a>BienAimée</td><td class="port_item" align="center" width="25%"><a href="http://emelineancelpirouelle.com/" target="_blank" class="preview" style="background-image:url(assets/sites/eap.jpg);"></a>Emeline Ancel-Pirouelle</td></tr><tr><td class="port_item" align="center" width="25%"><a href="http://www.guenoleecourcoux.com/" target="_blank" class="preview" style="background-image:url(assets/sites/guenolee.jpg);"></a>Guénolée Courcoux</td><td class="port_item" align="center" width="25%"><a href="http://www.lapeniche.net/" target="_blank" class="preview" style="background-image:url(assets/sites/scpo.jpg);"></a>La Péniche</td></tr></table>';
document.getElementById('portcontent').innerHTML = images;
scrollpage();
}

function port2 () {
var images = '<table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-top:10px;"><tr><td class="port_item" align="center" width="25%"><a href="http://www.albumsdecaroline.com" target="_blank" class="preview" style="background-image:url(assets/sites/ladc.jpg);"></a>Les Albums de Caroline</td><td class="port_item" align="center" width="25%"><a href="http://www.mortezarafii.com" target="_blank" class="preview" style="background-image:url(assets/sites/mr.jpg);"></a>Morteza Rafii</td></tr><tr><td class="port_item" align="center" width="25%"><a href="http://www.ninesport.fr" target="_blank" class="preview" style="background-image:url(assets/sites/ninesport.jpg);"></a>NineSport</td><td class="port_item" align="center" width="25%"><a href="http://www.pagillet.fr" target="_blank" class="preview" style="background-image:url(assets/sites/pa.jpg);"></a>PA Gillet</td></tr><tr><td class="port_item" align="center" width="25%"><a href="http://www.renovation-maison.biz" target="_blank" class="preview" style="background-image:url(assets/sites/head.jpg);"></a>Rénover la Maison</td><td class="port_item" align="center" width="25%"><a href="http://www.thierryancel.com" target="_blank" class="preview" style="background-image:url(assets/sites/thancel.jpg);"></a>Thierry Ancel</td></tr></table>';
document.getElementById('portcontent').innerHTML = images;
scrollpage();
}

