Your IP : 216.73.216.201


Current Path : /home/balossw/www/temp/common/cms/media/js/
Upload File :
Current File : /home/balossw/www/temp/common/cms/media/js/functions.inc.js

/*---------------------------------------------------------------------------
		File name ............ common/js/functions.inc.js
		Project .............. Owebia CMS
		Author ............... Antoine Lemoine
		Creation date ........ 02.04.2004
		Modification date .... 30.01.2008
---------------------------------------------------------------------------*/


function formatSize(size)
{
	if (size=='NA' || isNaN(size) || size==null) { return '-'; }
	size = parseInt(size);

	if (size>1024*1024)
	{
		var value = size/1024/1024;
		return value.toFixed(2)+' Mo';
	}
	else if (size>1024)
	{
		return Math.ceil(size/1024)+' Ko';
	}
	else
	{
		return Math.ceil(size)+' octet'+(size>1 ? 's' : '');
	}
}