// DOM popup stuff, better for accessability
function popWind(){
	contentWin2 = eval(window.open(this.href,"popWin","menubar=1,toolbar=1,location=1,status=0,scrollbars=1,left=0,top=0,resizable=1"));
	return false;
}

function popLang(){
	langWin = eval(window.open(this.href,"langWin","menubar=1,location=1,status=0,scrollbars=1,left=60,top=60,resizable=1,width=450,height=400,x=450,y=400"));
	return false;
}

function popComm(){
	langWin = eval(window.open(this.href,"commWin","menubar=1,location=1,status=0,scrollbars=1,left=60,top=60,resizable=0,width=640,height=470,x=640,y=470"));
	return false;
}

function startpage()
{
	var popups = document.getElementsByTagName("a");
	for (i = 0; i < popups.length; i++)
	{
		if (popups[i].className == "langPop"){
			popups[i].onclick = popLang;
			popups[i].target = "";
		}
		if (popups[i].className == "commPop"){
			popups[i].onclick = popComm;
			popups[i].target = "";
		}
	}
}