function newPage(url) {
	window.open(url);
}

function inputBlur(texte) {
	theInput = document.getElementById(texte);
	if (theInput.value == "") {
		theInput.value = texte;
	}
}

function inputFocus(texte) {
	theInput = document.getElementById(texte);
	if (theInput.value == texte) {
		theInput.value = "";
	}
}