﻿<!--
	
function validSearch(Phrase, dummyText) {
	dummyText = "Pesquisa ...";
	if (document.formSearch.q.value == dummyText) {
		document.formSearch.q.value = "";
	}
	// if (document.formSearch.q.value == "") {
	// 	alert(Phrase + ".");
	// 	document.formSearch.q.focus();
	// 	return false;
	//}
	return true;
}

function validContactForm() {
	document.contactForm.formName.value = escape(document.contactForm.formNameRaw.value);
	document.contactForm.formEmail.value = escape(document.contactForm.formEmailRaw.value);
	document.contactForm.formPhone.value = escape(document.contactForm.formPhoneRaw.value);
	document.contactForm.formCity.value = escape(document.contactForm.formCityRaw.value);
	document.contactForm.formSubject.value = escape(document.contactForm.formSubjectRaw.value);
	document.contactForm.formMessage.value = escape(document.contactForm.formMessageRaw.value);
}

function validOrderForm() {
	document.orderForm.formName.value = escape(document.orderForm.formNameRaw.value);
	document.orderForm.formEmail.value = escape(document.orderForm.formEmailRaw.value);
	document.orderForm.formPhone.value = escape(document.orderForm.formPhoneRaw.value);
	document.orderForm.formCity.value = escape(document.orderForm.formCityRaw.value);
	document.orderForm.formMessage.value = escape(document.orderForm.formMessageRaw.value);
}

function updateProduct(whatProduct) {
	if (whatProduct != "") {
		if (document.getElementById) {
			document.getElementById('whatProduct').value = whatProduct;
			document.getElementById('formAction').value = "updateProduct";
		} else if (document.all) {
			document.all['whatProduct'].value = whatProduct;
			document.all['formAction'].value = "updateProduct";
		} else if (document.layers) {
			document.layers['whatProduct'].value = whatProduct;
			document.layers['formAction'].value = "updateProduct";
		}
	}
	validOrderForm();
	document.orderForm.submit();
}

function deleteProduct(whatProduct) {
	if (whatProduct != "") {
		if (document.getElementById) {
			document.getElementById('whatProduct').value = whatProduct;
			document.getElementById('formAction').value = "delete";
		} else if (document.all) {
			document.all['whatProduct'].value = whatProduct;
			document.all['formAction'].value = "delete";
		} else if (document.layers) {
			document.layers['whatProduct'].value = whatProduct;
			document.layers['formAction'].value = "delete";
		}
	}
	validOrderForm();
	document.orderForm.submit();
}

//-->
