// JavaScript Document
// e adalah id dari object yang akan dihide (@igam) !
function textShow(e)
{
	if(eval("document.all." + e + ".style.display == 'none'"))
	{
		eval("document.all." + e + ".style.display = ''");
	}
	else
	{
		eval("document.all." + e + ".style.display = 'none'");
	}
}

function linkto(e)
{
	window.location = e;
}

function tunjukan_aja(e)
{
		eval("document.all." + e + ".style.display = ''");
}

function hilangkan_aja(e)
{
		eval("document.all." + e + ".style.display = ''");
}
