function newWindow(newContent, name)
{
	winContent = window.open(newContent, name, 'left=165, top=310,width=790,height=500, toolbar=yes,scrollbars=yes, resizable=yes')         
}

function getX(largeur) {
	width = screen.availWidth;
	return (width - largeur)/2;
}

function getY(hauteur) {
	height = screen.availHeight;
	return (height - hauteur)/2;
}
function showWindow(url, titre, w, h) {
	if (window.showModalDialog) {
		// Internet Explorer
		winModalWindow = window.open(url,titre,'dependent=yes,left=' + getX(w) + ',top=' + getY(h) + ',width=' + w + ',height=' + h + ',status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes');
	}	
	else {
		// Netscape
		winModalWindow = window.open(url,titre,'dependent=yes,screenX=' + getX(w) + ',screenY=' + getY(h) + ',width=' + w + ',height=' + h + ',status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes');
	}	
	affiche = true;
}

function getObjet(x) {
	if (typeof x != 'string') {
		return x;
	}
	else if (Boolean(document.getElementById)) {
		return document.getElementById(x);
	}
	else if (Boolean(document.all)) {
		return eval('document.all.' + x);
	}
	else {
		return null;
	}
}

function genereTels() {
	getObjet('mobileVlb').innerHTML='06 03 45 21 12';
	getObjet('mailVlb').innerHTML='<A href=mailto:vlebrun@bloobyte.com class=text><font color=#666666><u><b>Vincent Lebrun</b></u></font></A>';
	getObjet('mobileDdo').innerHTML='06 12 54 69 44';
	getObjet('mailDdo').innerHTML='<A href=mailto:ddoussot@bloobyte.com class=text><font color=#666666><u><b>David Doussot</b></u></font></A>';	
}
function genereMentions() {
	getObjet('tel1').innerHTML='06 03 45 21 12';
	getObjet('tel3').innerHTML='09 55 88 39 54';
	getObjet('mail3').innerHTML='contact@bloobyte.com';	
}

function genereMail() {
	getObjet('mailContact').innerHTML='<A href=mailto:contact@bloobyte.com class=text><font color=#666666><u><b>Contactez-nous</b></u></font></A>';		
}