if ( typeof(isProdaction)=='undefined' || isProdaction===null)
{
	var isProdaction = false;
}
function rm_debug() {
	if (isProdaction)
		return false;
	if (typeof console == "undefined" || typeof console.debug == "undefined")
		return false;
	if (arguments.length == 1)
		console.log(arguments[0]);
	else
		console.log(arguments);
};

