function downloadFile()
{
	var url = document.getElementById('downloadUrl');
	if(url != '')
	{
		window.location = url;
	}
}

function toggleDiv(show_div,hide_div)
{
	var show = document.getElementById(show_div);
	var hide = document.getElementById(hide_div);

	show.style.display="";
	hide.style.display="none";
}


function stillHere()
{
	document.getElementById('stillhereimg').src = document.getElementById('stillhereimg').src;
	setTimeout('stillHere()',10000);
}

//stillHere();

