window.onload = function() {

		article_focus();
		

}
function article_focus()
{
	el = document.getElementsByName("article")[0];
		if(el){
			el.focus();
			el.onclick = function() {
			this.select();
			}
		}
}
