function showText()
{
	for ( var x = 0 ; x < showText.arguments.length ; x+=2 )
	{
		if (document.getElementById)
		{
			document.getElementById(showText.arguments[x]).innerText = showText.arguments[x+1];
		}
	}
}