var sshift = 0;
var w=window,d=document,e=d.documentElement,g,x,y;
var email1,email2,emailcommon;

function window_resize() {
	g=d.getElementsByTagName('body')[0];
    x=w.innerWidth||e.clientWidth||g.clientWidth;
    y=w.innerHeight||e.clientHeight||g.clientHeight;
    if (x<1390) { sshift = parseInt((1390-x)/2); } else { sshift = 0; } 
    window.scroll(sshift,0);
    document.getElementById("ccontent").style.left = sshift + "px";
    document.getElementById("dcontent").style.left = sshift + "px";
    }

function actDialog(how) {
	if (how=="openD") 
		{ document.getElementById("ccontent").style.visibility = "visible";
		document.getElementById("dcontent").style.visibility = "visible"; }
	else
		{ document.getElementById("ccontent").style.visibility = "hidden";
		document.getElementById("dcontent").style.visibility = "hidden"; }
	window.scroll(sshift,0);
	}

function insertDetails() {
	email1 = "lisa";
	email2 = "fred";
	emailcommon = "pons-labelle.com";
	document.write("<br>Frederic and Lisa Pons<br>391 Bis rue des D&eacute;port&eacute;s<br>59154 Crespin<br>France<br>&nbsp;<br>tel: +33 (0)688 094 075<br>email: <a href='mailto:"+email2+"@"+emailcommon+"'>"+email2+"@"+emailcommon+"</a><br>email: <a href='mailto:"+email1+"@"+emailcommon+"'>"+email1+"@"+emailcommon+"</a><br>skype: fredericpons<br>web: <a href='http://www.pons-labelle.com'>www.pons-labelle.com</a>");
	}
