function showBox()
{
 document.getElementById('boxBorder').style.backgroundColor = "#01315F";
 document.getElementById('box').className = "show";
 document.getElementById('boxPic').className = "hide";
}

function hideBox()
{
 document.getElementById('box').className = "hide";
 document.getElementById('boxBorder').style.backgroundColor = "white";
 document.getElementById('boxPic').className = "show";
}

function boxDisplay(string)
{
 var doc = string + ".html";

 showBox();
 document.getElementById('myIframe').src = doc;
}

function pageDisplay(string, page)
{
 var doc = string + page + "Page.html";

 if (string == 'English' && page == 'Language')
  document.getElementById('pageTitle').innerHTML = "English as a 2nd Language";
 if (string == 'Spanish' && page == 'Language')
  document.getElementById('pageTitle').innerHTML = "Igl&eacute;s como Segunda Idioma";
 if (string == 'French' && page == 'Language')
  document.getElementById('pageTitle').innerHTML = "L'Anglais comme duexi&egrave;me langue";

 if (string == 'English' && page == 'Visa')
  document.getElementById('pageTitle').innerHTML = "International I-20 Visa Assistance";
 if (string == 'Spanish' && page == 'Visa')
  document.getElementById('pageTitle').innerHTML = "Asistencia para la Visa internacional I-20";
 if (string == 'French' && page == 'Visa')
  document.getElementById('pageTitle').innerHTML = "Aide &agrave; l'obtention de Visa I-20 international";

 document.getElementById('myIframe2').src = doc;

 if (page != 'Visa')
  boxDisplay(string + page);
}
