var hodnoty = new Array();
hodnoty['jmeno'] = ['Jméno'];
hodnoty['misto_stavby'] = ['Místo stavby'];
hodnoty['mail'] = ['E-mail'];
hodnoty['telefon'] = ['Telefon'];
hodnoty['zprava'] = ['Zpráva'];

function doFocus(pole_id) {
	if (document.getElementById(pole_id).value == hodnoty[pole_id]) {
		document.getElementById(pole_id).value = "";
	}
}

function doBlur(pole_id) {
	if (document.getElementById(pole_id).value == "") {
		document.getElementById(pole_id).value = hodnoty[pole_id];
	}
}
