// free estimate pop up
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=750,height=500,left = 375,top = 275');");
}

// show hide section - used on clients page
function displaySection(the_section, newclass){
 
  if (document.getElementById(the_section).className=="show"){
    document.getElementById(the_section).className = "hide";return
  }
  for (i=0;i<section_array.length;i++){
    var my_section = document.getElementById(section_array[i]);
    my_section.className = "hide";
  }
  document.getElementById(the_section).className = "show";
}
