// JavaScript Document
function checkemail() {
	if (document.form1.email.value == "Enter Your Email") {
		document.form1.email.value = "";
	}
}

function checkd() {
	if (document.form1.description.value == "Briefly describe your project.") {
		document.form1.description.value = "";
	}
}

function checkemailempty() {
	if (document.form1.email.value == "") {
		document.form1.email.value = "Enter Your Email";
	}
}

function checkdempty() {
	if (document.form1.description.value == "") {
		document.form1.description.value = "Briefly describe your project.";
	}
}
