  function closeAll() {
    var elements = new Array();
	elements[0] = "newsAndPromo";
	elements[1] = "faqContent";
	elements[2] = "allNews";
	elements[3] = "archClass";
	elements[4] = "gameLore";
	elements[5] = "gameBeasts";
	elements[6] = "comradePromo";
	for (i=0; i<elements.length; i++) {
	  if (document.getElementById(elements[i])) {
        document.getElementById(elements[i]).style.display = "none";
      }	  
	}
  }

  function openPop(windowName) {
    closeAll();
    document.getElementById(windowName).style.display = "block";
	if (windowName == "newsAndPromo") {
	  document.getElementById('promotions').style.backgroundImage = "url('/promotions/ageofconan/images/3-col_mid.jpg')";
	} 
  }

  function navWindow(url) {
    window.open(url,'','toolbar=1,location=1,menubar=1,resizable=1,scrollbars=1,width=1024,height=768'); 
  }

