
function successViewCount(ret){
      /*var orig = htmlConnection.responseText;
      var pocet = orig.substring(orig.indexOf(\'<font>\')+6, orig.indexOf(\'</font>\'));
      document.getElementById(\'albumViewCount1\').childNodes[0].nodeValue = pocet;*/
      $("#albumViewCount").text(ret.albumViewCount);
      //HideWait();
}
      
function AfterLoad(){
  /*ShowPictures();
  window.onscroll = ShowPictures;
  window.onresize = ShowPictures;
  MoveContent();*/
  
}

$(document).ready(function(){
	$.getJSON("/_www_root_/ajax/albumViewCount.php",
		{ albumID: albumID },
		function(ret)
		{
      $("#albumViewCount").text('-');
			successViewCount(ret);
		}
	);
  //AfterLoad();
});
