// JavaScript Document
function SubmitForm() {
	feedback.action = "scripts\\" + feedback.select1.value;
	feedback.submit();
}

function showPCode(){
	var country = document.users.fcountry.value;
	var code = document.users
	
	switch(country){
		case "United States":
			document.anchors[8].innerHTML ="Zip Code";
			code.fpcode.style.visibility = "visible";
			break;
		case "Canada":
			document.anchors[8].innerHTML = "Postal Code";
			code.fpcode.style.visibility = "visible";
			break;
		case "Other":
			document.onchors[8].innerHTML = "Postal Code";
			code.fpcode.style.visibility = "visible";
			break;
		default:
			document.anchors[8].innerHTML = "";
			code.fpcode.style.visibility = "hidden";
			break;
	}
}

function validateForm(){
	var check = document.users.elements;
	
	for(var i=0; i<=12; i++){
		if(check[i].value.length<1 || check[i].selectedIndex<1){
			//document.anchors[i+1].style.fontWeight = "bold";
			document.anchors[i+1].style.color = "red";
			document.anchors[0].innerHTML ="<h4><font color='red'>Items in red are required</font></h4>";
			check[i].focus();
			return false;
		} else {
			//document.anchors[i+1].style.fontWeight = "bold";
			document.anchors[i+1].style.color = "#d0bc91";
		}
	}
	if(i>=12){
			window.location = "registrationNewsletter.php";
	}
}

function formFill() {
	var form = document.forms[0];
	
	form.ffname.value = "Ronald";
	form.flname.value = "Suchiu";
	form.faddress.value = "Ontario";
	form.fcity.value = "Tecumseh";
	form.fstate_province.value = "13013 Tecumseh Road E";
	form.fcountry.value = "Canada";
	form.fpcode.value = "123456";
	form.fphone.value = "1-800-563-6306"
	form.femail.value = "suchiu@suchiu.com";
	form.fremail.value = "suchiu@suchiu.com";
	form.fpass.value = "nottirb1";
	form.frepass.value = "nottirb1";
}

function feedbackFill() {
	var form = document.forms[0];
	form.fname.value = "Reset";
	form.lname.value = "Test";
	form.email.value = "teser_tset@hotmail.com";
	form.subject.value = "Website feedback & information";
	form.msg.value = "This is a TEST message coming from www.suchiu.com/feedback.php";
}

