function permittedSoft(){
	var xmlDoc=null;
	if (window.ActiveXObject)
	{// code for IE
		xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
	}//endif
	else if (document.implementation.createDocument)
	{// code for Mozilla, Firefox, Opera, etc.
		xmlDoc=document.implementation.createDocument("","",null);
	}//endelseif
	else
	{
		alert('Your browser cannot handle this script');
	}//endelse
	if (xmlDoc!=null) 
	{
		xmlDoc.async=false;
		xmlDoc.load("http://www.pokerstars.hu/league-data/prohib.xml");
		var x=xmlDoc.getElementsByTagName("permitted");
		var y=xmlDoc.getElementsByTagName("date");
		document.write("<ol>");
		for (var i=0;i<x.length;i++)
		{ 
			document.write("<li class=\"sub_nav\">");
			document.write(x[i].getElementsByTagName("name")[0].childNodes[0].nodeValue);
			document.write("</li>");
		}//endfor
		document.write("</ol>");
	}//endif
}//end function

function prohibitedSoft(){
	var xmlDoc=null;
	if (window.ActiveXObject)
	{// code for IE
		xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
	}//endif
	else if (document.implementation.createDocument)
	{// code for Mozilla, Firefox, Opera, etc.
		xmlDoc=document.implementation.createDocument("","",null);
	}//endelseif
	else
	{
		alert('Your browser cannot handle this script');
	}//endelse
	if (xmlDoc!=null) 
	{
		xmlDoc.async=false;
		xmlDoc.load("http://www.pokerstars.hu/league-data/prohib.xml");
		var x=xmlDoc.getElementsByTagName("prohibited");
		var y=xmlDoc.getElementsByTagName("date");
		document.write("<ol>");
		for (var i=0;i<x.length;i++)
		{ 
			document.write("<li class=\"sub_nav\">");
			document.write(x[i].getElementsByTagName("name")[0].childNodes[0].nodeValue);
			document.write("</li>");
		}//endfor
		document.write("</ol>");
	}//endif
}//end function

function semiPermitted(){
	var xmlDoc=null;
	if (window.ActiveXObject)
	{// code for IE
		xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
	}//endif
	else if (document.implementation.createDocument)
	{// code for Mozilla, Firefox, Opera, etc.
		xmlDoc=document.implementation.createDocument("","",null);
	}//endelseif
	else
	{
		alert('Your browser cannot handle this script');
	}//endelse
	if (xmlDoc!=null) 
	{
		xmlDoc.async=false;
		xmlDoc.load("http://www.pokerstars.hu/league-data/prohib.xml");
		var x=xmlDoc.getElementsByTagName("semi");
		var y=xmlDoc.getElementsByTagName("date");
		document.write("<ol>");
		for (var i=0;i<x.length;i++)
		{ 
			document.write("<li class=\"sub_nav\">");
			document.write(x[i].getElementsByTagName("name")[0].childNodes[0].nodeValue);
			document.write("</li>");
		}//endfor
		document.write("</ol>");
	}//endif
}//end function

function printDate(language){
	var xmlDoc=null;
	if (window.ActiveXObject)
	{// code for IE
		xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
	}//endif
	else if (document.implementation.createDocument)
	{// code for Mozilla, Firefox, Opera, etc.
		xmlDoc=document.implementation.createDocument("","",null);
	}//endelseif
	else
	{
		alert('Your browser cannot handle this script');
	}//endelse
	if (xmlDoc!=null) 
	{
		xmlDoc.async=false;
		xmlDoc.load("http://www.pokerstars.hu/league-data/prohib.xml");
		var y=xmlDoc.getElementsByTagName("date");
		for (var j=0;j<y.length;j++)
		{
			document.write(y[j].getElementsByTagName(language)[0].childNodes[0].nodeValue);
		}//endfor
		document.write("</p>");
	}//endif
}//end function