/////////////////////////////////////////////////////////////////////////////////////
/// This function refresh the display of a div
/// 	- It corrects some display problem when the content is rendered on Mac
/////////////////////////////////////////////////////////////////////////////////////


/*function refreshDisplay(str_divId) 
{
	var div = document.getElementById(str_divId);
	if(div != null) {
		div.style.display = 'none';
		//test_func(str_divId);
		setTimeout("test_func('"+str_divId+"')",0);
	}
}

function test_func(str_divId) {
	
	var div = document.getElementById(str_divId);
	if(div != null) {
		
		div.style.display = 'block';
	}
}*/


function refreshDisplay(str_divId) 
{
	var div = document.getElementById(str_divId);
	if(div != null) {
		div.style.display = 'none';
		div.style.display = 'block';
	}
}