// Java Document
function openEstimate() {
	newWindow = window.open("freeEstimate.php", "newWin", "toolbar=no,location=no,scrollbars=yes,width=550,height=650")
}

function validate_form ( )
{
    valid = true;
	 if ( document.form1.box.checked == false )
    {
        alert ( "Please check the box that states you have read the terms and conditions and you agree!" );
        valid = false;
    }
    return valid;
}

// Java Document
function openEstimate() {
	newWindow = window.open("freeEstimate.php", "newWin", "toolbar=no,location=no,scrollbars=yes,width=550,height=650")
}

function validate_form ( )
{
    valid = true;

	 if ( document.form1.box.checked == false )
    {
        alert ( "Please check the box that states you have read the terms and conditions and you agree!" );
        valid = false;
    }
    return valid;
}

