function printable() {
  if (printablepage == false) {
  	if (HM_IE) { 
	  document.all.dynamic_stuff.innerHTML = "";
	  document.all.sitemap.innerHTML = "";
	  document.all.printoptions.innerHTML = '[ <a href="javascript:print();">print</a> ] [ <a href="javascript:printable();">normal version</a> ]';
	} else { 
	  document.getElementById("dynamic_stuff").innerHTML = "";
	  document.getElementById("sitemap").innerHTML = "";
	  document.getElementById("printoptions").innerHTML = '[ <a href="javascript:print();">print</a> ] [ <a href="javascript:printable();">normal version</a> ]';
	}
	RightBack(800);
	printablepage = true;
  } else {
    location.reload();
  }
}

function RightBack(InputWidth) {
  temp = windowresized();
  
  if (InputWidth == null) {
    var TheWindowWidth = document.body.clientWidth
  } else {
  	TheWindowWidth = InputWidth;
  }
  var TheWindowHeight = document.body.clientHeight
 
  if (!printablepage) {
	if (TheWindowWidth > 1000) {
      if (HM_IE) {
	    document.all.table_top.width = 950;
	      document.all.table_main.width = 950;
	      document.all.pain_no_1.width = 938;
	      document.all.pain_no_2.width = 938;
	      document.all.pain_no_3.width = 938;
	      document.all.collegename.src = "http://www.ecgf.uakron.edu/templateimages/collegename-long.gif";
	      document.all.sitemap.style.posLeft = TheWindowWidth / 2 - 382 - 85;
	      document.all.sitemap.style.posTop = 305;
	    } else {
	      document.getElementById("table_top").width = 950;
	      document.getElementById("table_main").width = 950;
	      document.getElementById("pain_no_2").width = 938;
	      document.getElementById("pain_no_2").width = 938;
	      document.getElementById("pain_no_2").width = 938;
	      document.getElementById("collegename").src = "http://www.ecgf.uakron.edu/templateimages/collegename-long.gif";
	      document.getElementById("sitemap").style.left = TheWindowWidth / 2 - 382 - 85;
	      document.getElementById("sitemap").style.top = 305;
	    }
      } else {
    	if (HM_IE) {
		  document.all.table_top.width = 780;
		  document.all.table_main.width = 780;
		  document.all.pain_no_1.width = 768;
		  document.all.pain_no_2.width = 768;
		  document.all.pain_no_3.width = 768;
		  document.all.collegename.src = "http://www.ecgf.uakron.edu/templateimages/collegename.gif";
		  document.all.sitemap.style.posLeft = TheWindowWidth / 2 - 382;
		  document.all.sitemap.style.posTop = 305;
		} else {
		  document.getElementById("table_top").width = 780;
		  document.getElementById("table_main").width = 780;
		  document.getElementById("pain_no_2").width = 768;
		  document.getElementById("pain_no_2").width = 768;
		  document.getElementById("pain_no_2").width = 768;
		  document.getElementById("collegename").src = "http://www.ecgf.uakron.edu/templateimages/collegename.gif";
		  document.getElementById("sitemap").style.left = TheWindowWidth / 2 - 382;
		  document.getElementById("sitemap").style.top = 305;
		}
	  }
  }
  return true;
	
}

function grabInput() {
	if (location.search) temp = location.search.substring(1);
	return temp;
}

function whenresized() { RightBack(null); }

HM_IE = (document.all) ? true : false;
window.onresize = whenresized;
printablepage = false;