// (C) 2009 Joel Schneider. All rights reserved.
// Code to pop up the audio player, and auto-focusing of the login form.

function audio_popup(url)
{
	audio_window = window.open(url, 'audio_popup', 'height=100, width=475, scrollbars=no, toolbar=no, status=yes');
	if (window.focus) {
		audio_window.focus();
	}
}

function load_focus()
{
	doc_body = document.getElementsByTagName('BODY')[0];
	if (doc_body)
	{
		if (document.getElementById('user_field'))
		{
			document.getElementById('user_field').focus();
		}
	} else {
		setTimeout("load_focus()", 10);
	}
}

load_focus();

