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

function getHTML(store)
{
  var html = "";
  var img = "";
  var htmlArray = new Array();
  switch(store)
  {
    case "parcel1":
      html = "<br/><p id='htmlP'><b>Pad Site Available</b> <br/>1.6 acres <br/>For more information, contact Paul Jackson at (316) 634-6600</p>";
      img = "stoneb_parcel1.jpg";
      htmlArray[0] = html;
      htmlArray[1] = img;
      break;
    case "parcel2":
      html = "<br/><p id='htmlP'><b>Pad Site Available</b> <br/>1.3 acres <br/>For more information, contact Paul Jackson at (316) 634-6600</p>";
      img = "stoneb_parcel2.jpg";
      htmlArray[0] = html;
      htmlArray[1] = img;
      break;
    case "parcel3":
      html = "<br/><p id='htmlP'><b>Pad Site Available</b> <br/>0.9 acres <br/>For more information, contact Paul Jackson at (316) 634-6600</p>";
      img = "stoneb_parcel3.jpg";
      htmlArray[0] = html;
      htmlArray[1] = img;      
      break;
    case "parcel4":
      html = "<br/><p id='htmlP'><b>Pad Site Available</b> <br/>0.9 acres <br/>For more information, contact Paul Jackson at (316) 634-6600</p>";
      img = "stoneb_parcel4.jpg";
      htmlArray[0] = html;
      htmlArray[1] = img;      
      break;
	case "parcel5":
      html = "<br/><p id='htmlP'><b>Pad Site Available</b> <br/>0.9 acres <br/>For more information, contact Paul Jackson at (316) 634-6600</p>";
      img = "stoneb_parcel5.jpg";
      htmlArray[0] = html;
      htmlArray[1] = img;      
      break;
	case "parcel6":
      html = "<br/><p id='htmlP'><b>Pad Site Available</b> <br/>2.2 acres <br/>For more information, contact Paul Jackson at (316) 634-6600</p>";
      img = "stoneb_parcel6.jpg";
      htmlArray[0] = html;
      htmlArray[1] = img;      
      break;
	case "parcel7":
      html = "<br/><p id='htmlP'><b>Pad Site Available</b> <br/>1 acre <br/>For more information, contact Paul Jackson at (316) 634-6600</p>";
      img = "stoneb_parcel7.jpg";
      htmlArray[0] = html;
      htmlArray[1] = img;      
      break;
	case "parcel8":
      html = "<br/><p id='htmlP'><b>Pad Site Available</b> <br/>1 acre <br/>For more information, contact Paul Jackson at (316) 634-6600</p>";
      img = "stoneb_parcel8.jpg";
      htmlArray[0] = html;
      htmlArray[1] = img;      
      break;
	case "parcel9":
      html = "<br/><p id='htmlP'><b>Pad Site Available</b> <br/>1 acre <br/>For more information, contact Paul Jackson at (316) 634-6600</p>";
      img = "stoneb_parcel9.jpg";
      htmlArray[0] = html;
      htmlArray[1] = img;      
      break;
	case "parcel10":
      html = "<br/><p id='htmlP'><b>Pad Site Available</b> <br/>1 acre <br/>For more information, contact Paul Jackson at (316) 634-6600</p>";
      img = "stoneb_parcel10.jpg";
      htmlArray[0] = html;
      htmlArray[1] = img;      
      break;
	case "parcel11":
      html = "<br/><p id='htmlP'><b>Pad Site Available</b> <br/>0.9 acres <br/>For more information, contact Paul Jackson at (316) 634-6600</p>";
      img = "stoneb_parcel11.jpg";
      htmlArray[0] = html;
      htmlArray[1] = img;      
      break;
	case "parcel12":
      html = "<br/><p id='htmlP'><b>Menards <br/>Anchor Store <br/>230,000 sq ft.</p>";
      img = "stoneb_menards.jpg";
      htmlArray[0] = html;
      htmlArray[1] = img;      
      break;

  }
  return htmlArray;
}