function display_spoiler(thisSpolierBlock)
{
	blockElemet = thisSpolierBlock.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0];
	currentButton = thisSpolierBlock;
	blockHtml = thisSpolierBlock.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('textarea')[0];
	
	if (blockElemet.style.display != '')
	{
		blockElemet.innerHTML = blockHtml.value;
		blockElemet.style.display = '';
		currentButton.innerText = '';
		currentButton.value = lang["spoiler_hide"];
	}
	else
	{
		blockElemet.innerHTML = '';
		blockElemet.style.display = 'none';
		currentButton.innerText = '';
		currentButton.value = lang["spoiler_show"];
	}
}

//status: display status bar for rank
function ss(){window.status=lang["rank_status"];return true;}
//status: display status bar for sword
function sss(){window.status=lang["sword_status"];return true;}
//status: clear status bar
function cs(){window.status='';}

function ShowRank(id)
{
    window.open('showrank.php?id=' + id ,'','width=250,height=190,left=' + (window.screen.width/2 - 250/2) + ',top=' + (window.screen.height/2 - 190/2));
}

function ShowSword(id)
{
    window.open('showsword.php?id=' + id ,'','width=270,height=230,left=' + (window.screen.width/2 - 270/2) + ',top=' + (window.screen.height/2 - 230/2));
}
