function fBrowser(field_name, url, type, win)
{
	var cmsURL = '/upload.php?type=' + type;
	if (type == 'image')
	{
		a_width = 590;
		a_height = 545;
	}
	else
	{
		a_width = 475;
		a_height = 375;
	}
	tinyMCE.activeEditor.windowManager.open({
		file: cmsURL,
		title: 'fBrowser',
		width: a_width,
		height: a_height,
		resizable: 'no',
		inline: 'yes',
		close_previous: 'no'
	}, {
		window: win,
		input: field_name
	});
	return false;
}
function toggleChangePhoto()
{
	if ($('#change_photo').css('display') == 'none') $('#change_photo').attr('style', 'display: block');
	else $('#change_photo').attr('style', 'display: none');
}
function showMenu(id, num, page_slug)
{
	$('#menu_' + id).attr('src', '/images/header_' + num + '_' + page_slug + '_active.jpg');
}
function hideMenu(id, num, page_slug, active)
{
	$('#menu_' + id).attr('src', '/images/header_' + num + '_' + page_slug + active + '.jpg');
}