function tarih()  {
var theMoment = new Date();
document.write(theMoment.toLocaleString());
}

function ToggleDisplay(oButton, oItems)
{
	if ((oItems.style.display == "") || (oItems.style.display == "none"))	{ oItems.style.display = "block";}	else {oItems.style.display = "none";}
	return false;
}
