
// Wave Area
function checkBarFinishWave( ) {
var error = "";
    if (document.wave.p1.selectedIndex == 0) {
    error = "Please Select a Bar Length and Finish.\n";
    }    
return error;
}

function checkPostFinishWave() {
var error = "";
   if (document.wave.p2.selectedIndex == 0){
       error = "Please Select the Post Finish.\n";
    }
return error;
}

function checkPostStyleWave() {
var error = "";
   if (document.wave.p3.selectedIndex == 0){
       error = "Please Select the Post Style.\n";
    }
return error;
}

// Horizon Area
function checkBarFinishHorizon( ) {
var error = "";
    if (document.horizon.p1.selectedIndex == 0) {
    error = "Please Select a Bar Length and Finish.\n";
    }    
return error;
}

function checkPostFinishHorizon() {
var error = "";
   if (document.horizon.p2.selectedIndex == 0){
       error = "Please Select the Post Finish.\n";
    }
return error;
}

function checkPostStyleHorizon() {
var error = "";
   if (document.horizon.p3.selectedIndex == 0){
       error = "Please Select the Post Style.\n";
    }
return error;
}