// JavaScript Document

function swaptabs (showthis,hidethis) { 
	var showme = document.getElementById(showthis).style;showme.display = "block"; 
	var hideme = document.getElementById(hidethis).style;hideme.display ="none";
}