function nevon() {
	var x=document.getElementById("nev");
	if (x.value=="Neve") x.value="";
	x.style.color="#000";
}

function emailon() {
	var x=document.getElementById("email");
	if (x.value=="E-mail címe") x.value="";
	x.style.color="#000";
}

function webon() {
	var x=document.getElementById("web");
	if (x.value=="Jelenlegi weboldala (ha van)") x.value="";
	x.style.color="#000";
}

function infoon() {
	var x=document.getElementById("info");
	if (x.value=="Elképzelése, kérdései") x.value="";
	x.style.color="#000";
}

function nevoff() {
	var x=document.getElementById("nev");
	if (x.value=="") {x.value="Neve"; x.style.color="#999"; }
}

function emailoff() {
	var x=document.getElementById("email");
	if (x.value=="") {x.value="E-mail címe"; x.style.color="#999"; }
}

function weboff() {
	var x=document.getElementById("web");
	if (x.value=="") {x.value="Jelenlegi weboldala (ha van)"; x.style.color="#999"; }
}

function infooff() {
	var x=document.getElementById("info");
	if (x.value=="") {x.value="Elképzelése, kérdései"; x.style.color="#999"; }
}
