function news_expand(){
	document.getElementById('old_updates').innerHTML='<li>5/23/09 - The uploader was recently not allowing uploads because my disk space was full due to old backups not being cleared. This has been fixed, the uploader is working fine now.</li><br /><li>4/27/09 - Fixed error from last night where it made every image have an error and not be able to display.</li><br /><li>4/10/09 - Front page redesign done, more features to come soon.</li><br /><li>3/28/09 - Resize image feature added, you can now resize an image to any pixel size you want, with being reasonable.It also has to be a jpg, gif, or png.<br />Redesign of the front page coming soon.</li><br /><li>2/15/09 - Now when someone links to a missing image on imgh.us, they get <a href="http://imgh.us/o/a.png" target="_blank"><img src="http://imgh.us/o/a.png" height="30" alt="Image Not Found" /></a> instead (click on the image to see the full width/height, it changes colors every time you refresh)</li><br /><li>2/15/09 - Deleted images no longer count towards the total image count, or the total amount you have uploaded.</li><br /><li>2/15/09 - Made site news on the front page of imgh.us</li><br />';
	document.getElementById('link_news').innerHTML='<a href="#" onclick="news_collapse();">[Collapse]</a>';
}
function news_collapse(){
	document.getElementById('old_updates').innerHTML = "";
document.getElementById('link_news').innerHTML = '<a href="#" onclick="news_expand();">[Older News]</a>';
}
