// Prevents caching of loaded files (TXTs, SWFs, XMLs etc...)
// Latest version (1.1)
String.prototype.noCache = function(){
	var isSWFinHTML = (_level0._URL.indexOf("file:///")==-1);
	var isURLlocal = (this.indexOf("://")==-1);
	if (isSWFinHTML || !isURLlocal){
		this += (this.indexOf("?")==-1) ? "?" : "&";
		this += "noCache=" + (new Date().getTime());
	}
	return this;
}

