function showHide(store, hideOrShow)
{
  var divObj = document.getElementById('imageHolder');
  var imgObj = document.getElementById('imgTag');
  var descrip = document.getElementById('descrip');
  var html = getHTML(store);
  if(hideOrShow == "show")
  {
    
    //divObj.style.backgroundImage = "url(images/" + store + ")";
    divObj.style.backgroundColor = "#081935";
    imgObj.src = "images/" + store;
    descrip.innerHTML = html;
    divObj.style.display = "block";
    
  }
  else
  {
    divObj.style.display = "none";
  } 
}

function getHTML(store)
{
  var html = "";
  switch(store)
  {
    case "Kansaslandtire.jpg":
      html = "<br/><p id='htmlP'><b>Kansasland Tire</b> <br/>644 S. Andover Road <br/>Andover, KS 67002 <br/><br/><b>Phone: (316) 733-1254</b><br/>www.ekansasland.com/<br/>stores/tires-andover-<br/>kansas.html</p>";
      break;
    case "AndoverDillons.jpg":
      html = "<br/><p id='htmlP'><b>Dillons Marketplace </b><br/>225 E. Cloud Avenue <br/>Andover, KS 67002 <br/></br><b>Phone: (316) 733-3720</b><br/>www.dillons.com</p>";
      break;
    case "AndoverYMCA.jpg":
      html = "<br/><p id='htmlP'><b>YMCA </b><br/>1115 E. US Highway 54 <br/>Andover, KS 67002 <br/></br><b>Phone: (316) 733-9622</b><br/>www.wichitaymca.org/<br/>content.php? p =447</p>";
      break;
    case "Theshopsatmarketplace.jpg":
      html = "<br/><br><p id='htmlP'><b>The Shops at MarketPlace </b><br/>Highway 54 and <br/>Andover Road <br/>Andover, KS 67002</p>";
      break;
	case "CapFed.jpg":
      html = "<br/><br><p id='htmlP'><b>Capitol Federal </b><br/>114 East Cloud Avenue <br/>Andover, KS 67002 <br/><br/><b>Phone: (316) 689-3245</b><br/>www.capfed.com</p>";
      break;
	case "arbys.jpg":
      html = "<br/><br><p id='htmlP'><b>Arbys </b><br/>200 East Cloud Avenue <br/>Andover, KS 67002 <br/><br/><b>Phone: (316) 733-1058</b><br/>www.arbys.com<br/>www.usbeefcorp.com</p>";
      break;
	case "blue-box.jpg":
      html = "<br/><br><p id='htmlP'><b>Pad Site Available</b><br/>2.06 Acres of Land <br/><br/>For more information, <br/>contact Paul Jackson <br/>at (316) 634-6600</p>";
      break;
	case "blue-box2.jpg":
      html = "<br/><br><p id='htmlP'><b>Pad Site Available</b><br/>1.08 Acres of Land <br/><br/>For more information, <br/>contact Paul Jackson <br/>at (316) 634-6600</p>";
      break;
	case "blue-box3.jpg":
      html = "<br/><br><p id='htmlP'><b>Pad Site Available</b><br/>1.25 Acres of Land <br/><br/>For more information, <br/>contact Paul Jackson <br/>at (316) 634-6600</p>";
      break;
	case "blue-box4.jpg":
      html = "<br/><br><p id='htmlP'><b>Pad Site Available</b><br/>1.81 Acres of Land <br/><br/>For more information, <br/>contact Paul Jackson <br/>at (316) 634-6600</p>";
      break;
	case "blue-box5.jpg":
      html = "<br/><br><p id='htmlP'><b>Pad Site Available</b><br/>1.55 Acres of Land <br/><br/>For more information, <br/>contact Paul Jackson <br/>at (316) 634-6600</p>";
      break;
	case "blue-box6.jpg":
      html = "<br/><br><p id='htmlP'><b>Pad Site Available</b><br/>1.32 Acres of Land <br/><br/>For more information, <br/>contact Paul Jackson <br/>at (316) 634-6600</p>";
      break;
	case "blue-box7.jpg":
      html = "<br/><br><p id='htmlP'><b>Pad Site Available</b><br/>1.06 Acres of Land <br/><br/>For more information, <br/>contact Paul Jackson <br/>at (316) 634-6600</p>";
      break;
	case "blue-box8.jpg":
      html = "<br/><br><p id='htmlP'><b>Pad Site Available</b><br/>13.83 Acres of Land <br/><br/>For more information, <br/>contact Paul Jackson <br/>at (316) 634-6600</p>";
      break;
	case "blue-box9.jpg":
      html = "<br/><br><p id='htmlP'><b>Pad Site Available</b><br/>11.37 Acres of Land <br/><br/>For more information, <br/>contact Paul Jackson <br/>at (316) 634-6600</p>";
      break;
  }
  return html;
}