function hideObj(sObj) 
{
	eval("document.getElementById('" + sObj + "').style.display = 'none'");
}

function showObj(sObj) 
{
	eval("document.getElementById('" + sObj + "').style.display = ''");
}

function popupVideo(n) {
	switch(n) {
		case 1:
		default:
			var w = window.open("swf/alaska.html", "Success_Stories", "width=320,height=260,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no");
		break;

		case 2:
			var w = window.open("swf/jccc.html", "Success_Stories", "width=320,height=260,resizable=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no");
		break;

		case 3:
			var w = window.open("swf/illinois.html", "Success_Stories", "width=320,height=260,resizable=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no");
		break;

		case 4:
			var w = window.open("swf/wakeforest.html", "Success_Stories", "width=320,height=260,resizable=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no");
		break;
	}
}

function OpenWindow(sPage) { 
	var NewWindow = window.open(sPage, 'ContentWindow', 'width=990, height=600, toolbar=0, location=0, directories=0, status=0, menuBar=0, scrollBars=1, resizable=1'); 
	NewWindow.focus(); 
}
