function thickboxOpen( title, url )
{
	$('#thickbox_header_caption').html( title );
	$('#thickbox_body').html( '<div class="thickbox_loader"><img src="/templates/images/ajax-loader.gif" alt="Loading..."/></div>' );
	$('#thickbox').css( 'display', 'block' );
	
	$.get( url, {}, function(data){
		$('#thickbox_body').html( data );
	});
}

function thickboxClose()
{
	$('#thickbox').css( 'display', 'none' );
}

