// ----------------------------------------------------------------------------

/**
 * wc
 *
 * console message
 *
 * @access		public
 * @param		<#VarType#> <#VarName#>	
 * @return		<#VarType#>
 */
function wc()
{
	if(window.console)
	{
		for(var i = 0; i < arguments.length; i++)
		{
			window.console.log(arguments[i]);
		}
	}
	else
	{
		//alert(msg);
	}
}

