// JavaScript Document


function shown(divid)
{
		document.getElementById('nur_learn').style.display = 'none' ;
		document.getElementById('nur_learn').style.visibility = 'hidden' ;
		if(divid!='')
		{
		document.getElementById('learn_close').style.display = 'none' ;
		document.getElementById(divid).style.display = '' ;
		document.getElementById(divid).style.visibility = 'visible' ;    
		}
		else
		{
				document.getElementById('learn_close').style.display = '' ;

		}
		
}
function SelectDiv()
{
	URL = window.location.href;	
//	fullURL = parent.document.URL; 
if(URL.indexOf('?')>0)
{
	DivName = URL.substring(URL.indexOf('?')+3, URL.length); 
}
else
{
	DivName ='';
}
if(DivName !='')
{
	show(DivName);
}
}

function MM_openBrWindow(theURL,winName,features)

{ //v2.0
  window.open(theURL,winName,features);
}