function showImage()
{
 document.getElementById('divImg').style.display = 'inline';
}

function hideImage()
{
 document.getElementById('divImg').style.display = 'none';
}

var txts = 12;

function writeReviews()
{
 alert("Functionality to be added shortly!");
}

function emailPage()
{
 eval("window.open('http://ydesigns.biz/tools/email-a-friend/?storename=yhst-11497539820919&theURL="+window.location+"','email_popup','menubar=no,scrollbars=no,width=500,height=420')");  
}

function storeLargerText()
{
 if(txts < 20)
 {
  
  txts++; txts++;
  document.getElementById('resource_order').style.fontSize = txts + "px";
  document.getElementById('caption_area').style.fontSize = txts + "px";
 }
}

function storeSmallerText()
{
 if(txts > 8)
 {
  txts--; txts--;
  document.getElementById('resource_order').style.fontSize = txts + "px";
  document.getElementById('caption_area').style.fontSize = txts + "px";
 }
}






