// JavaScript Document
var nameValue, firmValue, phoneValue, emailValue, messageValue;

function fieldAction(box) {
	var currentValue;
	if (box==1 && document.mail.name.value=="име и фамилия")
		document.mail.name.value = "";
	else if (box==2 && document.mail.firm.value=="фирма")
		document.mail.firm.value = "";
	else if (box==3 && document.mail.phone.value=="стационарен или мобилен телефон")
		document.mail.phone.value = "";
	else if (box==4 && document.mail.email.value=="електронна поща")
		document.mail.email.value = "";
	else if (box==5 && document.mail.message.value=="запитване в свободен текст")
		document.mail.message.value = "";
	if (!(box == 1))
		if (document.mail.name.value == "")
			document.mail.name.value = "име и фамилия";
	if (!(box == 2))
		if (document.mail.firm.value == "")
			document.mail.firm.value = "фирма";
	if (!(box == 3))
		if (document.mail.phone.value == "")
			document.mail.phone.value = "стационарен или мобилен телефон";
	if (!(box == 4))
		if (document.mail.email.value == "")
			document.mail.email.value = "електронна поща";
	if (!(box == 5))
		if (document.mail.message.value == "")
			document.mail.message.value = "запитване в свободен текст";
	if (box == -1)
		if (document.mail.name.value == "")
			document.mail.name.value = "име и фамилия";
}
