function siteselection_popup(title,msg,dialogClass){
	title="";
	msg1 ="<p><b>Welcome, Guest!<br><br><br><div style='text-align:left'>You have full access to the features of NBC News Archives on Demand.  You can also preview 15 secs of any video (please subscribe for full videos).</b><br><br>Are you a subscriber?  Your school may have an expired or invalid security token.  Please contact your school's Blackboard administrator for help.</div><br><br><b> Choose your level:</b></p>";
	
	$('<div class="dialog_popup">'+msg1+'<div class="button_div_line"></div><form id="smodeform" method="post" action="/portal/site/BbHigherEd"><input type="hidden" id="stype" name="stype"/></form></div>').insertAfter('#absout');
	$(".dialog_popup").dialog({
	buttons: { "Higher-Ed": function() {
		document.getElementById("stype").value="BBHE";
		submitMode();
		//location.href="?stype=BBHE"
		//$(this).dialog("close");
		}, "K-12": function() { 
			
			document.getElementById("stype").value="BBK12";
			submitMode();
			//location.href="?stype=BBK12"; $(this).dialog("close"); 
			} },
		modal: true,
		title: title,
		dialogClass: dialogClass
	});
}
function submitMode(){
	document.getElementById("smodeform").submit();
}