/*
 * UOSOLUTIONS 1.0.0 - New Javascript
 *
 * Copyright (c) 2009 Rolando Romero (kimono.com.ar)
 * GPL LICENSE
 *
 * $Date: 2009-09-20 00:00:00 -0300
 *
 */

shellUni.Nocache = ({
	Initialize: function(){
		/* Constructor */
		return this.Microtime();
	},
	Microtime: function(){
		var now = new Date().getTime() / 1000;
		return parseInt(now, 10);
	}
});
