function showIng()
{
 document.getElementById("divIng").style.top=200;
 document.getElementById("divIng").style.visibility='visible';
}
function closeIng()
{
 document.getElementById("divIng").style.visibility='hidden';
}
function expandImage(imgLoc)
  {
  var popWin = window.open('','','toolbar=0, location=0,status=0,menubar=0,resizable=0,scrollbars=1,width=600,height=600');
  popWin.document.open();
  popWin.document.write('<ht'+'ml><he'+'ad><ti'+'tle>Lisa Hoffman Skin Care</tit'+'le></he'+'ad><bo'+'dy bgcolor=#BDBCC1><center>');
  popWin.document.write('<img alt="loading expanded image... please wait..." name=mainImage src='+imgLoc+' border=0 style="border:5px solid #DDDEE2">');
  popWin.document.write('<br><br><font face=verdana,arial,helvetica size=1><b><a href="javascript:window.close()"><b><font color=#717075>Close Window</a>');
  popWin.document.write('</body></html>');
  popWin.document.close();
  popWin.moveTo(50,50);
  }
function showMenu(x)
{
  hideAll();
  var menuID = 'divMenu' + x;
  var theDiv = document.getElementById(menuID);
  theDiv.style.visibility='visible';
}
function  hideAll()
{
  var theDiv = document.getElementById('divMenu1');
  theDiv.style.visibility='hidden';
  var theDiv = document.getElementById('divMenu2');
  theDiv.style.visibility='hidden';
  var theDiv = document.getElementById('divMenu3');
  theDiv.style.visibility='hidden';
  var theDiv = document.getElementById('divMenu4');
  theDiv.style.visibility='hidden';
}


