//window.onload = ShowTest();

function ShowTest() {
	alert('Working');
}

function ShowArticle(id) {
	if (document.getElementById(id).style.display == "block") {
		document.getElementById(id).style.display = "none";
	} else {
		document.getElementById(id).style.display = "block";
	}
	return 0;
	
}

function confirmation(id) {
	var answer = confirm("Delete article " + id + "?");
	
	if (answer) {
		window.location = "editarticle.php?ArtID="+id+"&cmd=delete";
	} 
}

function calcH(id)
{

  //var the_height=document.body.scrollHeight;

  parent.document.getElementById(id).style.height=document.body.scrollHeight;
  

  
  document.getElementById(id).style.backgroundcolor="black";
  
  alert (document.getElementById(id).style.height);
  //alert (the_height);
}