function ToggleShit(obj)
{
 if(obj.style.display=="none")
 {
  obj.style.display="block";
 }
 else if(obj.style.display=="block")
 {
  obj.style.display="none";
 }
}

function DelConfirm()
{
 var isconf=confirm('Подтвердите удаление');
 return isconf;
}