// JavaScript Document

function changeContentById(source_obj, target_string)
{
	  document.getElementById(source_obj).innerHTML = target_string;
}

function fx_open_rnd_popup()
{
	window.open('/rnd_babe.php','rnd_babe','width=600,toolbar=no,menubar=no,location=no,scrollbars=yes,resize=yes');
}

function fx_toggle_image(divId) {
	if ( document.getElementById(divId).style.display == 'block')
	{
		document.getElementById(divId).style.display = 'none';
	}
	else
	{
		document.getElementById(divId).style.display = 'block';
	}
}
