﻿function ShowStorePopUp(Url)
{
	Url = Url.replace(/ /g,"%20");
	Url = Url.replace(/\#/g,escape("#"));
	storeWindow = window.open(Url,"IKEA","resizable=yes,toolbar=no,scrollbars=yes,location=no,directories=no,status=no,menubar=no,width=815,height=660");
	storeWindow.focus();
}

function ShowStorePopUp_wide(Url)
{
	Url = Url.replace(/ /g,"%20");
	Url = Url.replace(/\#/g,escape("#"));
	storeWindow = window.open(Url,"IKEA","resizable=yes,toolbar=no,scrollbars=yes,location=no,directories=no,status=no,menubar=no,width=815,height=960");
	storeWindow.focus();
}


function innerScript(){  
      }

function clearingTableUsingArray(){
    //var makeView = document.getElementById('directions');
    //makeView.style.visibility = "hidden";
    //makeView.style.visibility = "visible";  
  var moveTable = document.getElementsByTagName('TABLE')[2];
  var moveTable2 = document.getElementsByTagName('TABLE')[3];
  //moveTable.style.color = "purple"; 
  //moveTable2.style.color = "purple"; 
  moveTable.style.clear = "both";
  moveTable2.style.clear = "both";
            showElement("directions");
  }

function storeLink1(whichLink) {
  var owhichLink1 = document.getElementById('resultCell1');
  var owhichLink2 = document.getElementById('resultCell2');
  var owhichLink3 = document.getElementById('resultCell3');
  var owhichLink4 = document.getElementById('resultCell4');
  var owhichLink5 = document.getElementById('resultCell5');
  var otableStart = document.getElementById('tableStart');
  var rows = otableStart.getElementsByTagName('tr')
owhichLink1.bgcolor = "Red";
//var tr1 = document.getElementsByTagName("tr").item(1);
tr1.style.bgcolor = "Orange";
alert(tr1.bgcolor);
// #f7e4a9;
}

function turnOnList(){

  var ostoreList = document.getElementById(complete_storeList);

  var okarat = document.getElementById(icon_closed);


  if (ostoreList.style.display == "inline") {
  ostoreList.style.display = "none";
  okarat.src="images/icon_tri_closed.gif"
  }
  else {
  ostoreList.style.display = "inline";
  okarat.src="images/icon_tri_open.gif"
  }


}