// Expand Collapse Menu //

function toggle(id, link) {
var a = document.getElementById(id);
  if (a.style.height == '') {
    a.style.height = '115px';
    link.innerHTML = 'Read Less';
  } else {
    a.style.height = '';
    link.innerHTML = 'Read More';}
  }

// Larger Image Pop-Up //

function view_larger(sPicURL) {
	window.open("large_view.asp?" + sPicURL, "","resizable=yes, height=200, width=200, top=10, left=10");
}