window.onload = function (){
    if ($('txt_shoutbox_content'))
    setInterval("getNewShoutText()",5000);
}

function cmb_age_from_change() 
{
	$('cmb_age_to').options[$('cmb_age_from').selectedIndex].setAttribute('selected', 'selected');
	for ( i=0;  i < $('cmb_age_from').length; i++)
	{
		$('cmb_age_to').options[i].show();
		if (i < $('cmb_age_from').selectedIndex)
			$('cmb_age_to').options[i].hide();
	}
}
function cmb_age_to_change() 
{
	for ( i=0;  i < $('cmb_age_to').length; i++)
	{
		$('cmb_age_from').options[i].show();
		if (i > $('cmb_age_to').selectedIndex)
			$('cmb_age_from').options[i].hide();
	}
}

function addShoutbox() {
    callAJAX("xoad_handler","addShoutbox",$H({'shout':$('txt_sb_chat').value}),addShoutbox_callback);
    $('txt_sb_chat').value='';
}

function addShoutbox_callback(result) {    
        $('txt_shoutbox_content').innerHTML = result + $('txt_shoutbox_content').innerHTML;
}

function getNewShoutText() {    
    callAJAX("xoad_handler","getNewShoutText",$H({}),addShoutbox_callback);
}
