// JavaScript Document
function SubmitQuote()
{
	if ( document.getElementById("first_name").value == "" )
	{ alert("Please enter First Name"); }
	else if (document.getElementById("last_name").value == "")
	{ alert("Please enter Last Name"); }
	else if (document.getElementById("contact_phone").value == "")
	{ alert("Please enter Contact Phone"); }
	else if (document.getElementById("email").value == "")
	{ alert("Please enter Email"); }
	else if (document.getElementById("project_description").value == "")
	{ alert("Please enter Project Description"); }
	else {
    document.forms["QuoteForm"].submit(); 
	alert("Thank you for submitting your request. We will get back to you promptly."); }
}


function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
//if (d!="HoverBlockIII"){
//	document.getElementById("HoverPoint2009").style.color = "#000000";
//	document.getElementById("HoverPoint2009").style.backgroundImage = "url(images/hover_bg.png)";
//}
}
function ShowContent(d, x, y) {
if(d.length < 1) { return; }
var dd = document.getElementById(d);
dd.style.left = (x) + "px";
dd.style.top = (y) + "px";
dd.style.display = "block";
////if (d!="HoverBlockIII"){
//	document.getElementById("HoverPoint2009").style.color = "#FFFFFF";
//	document.getElementById("HoverPoint2009").style.backgroundImage = "url(images/hover_bg_2009.png)";
////}
}



