function uniqueUrl(sUrl) {
    var now = new Date();
    return sUrl +"cc="+ now.getTime() + now.getMilliseconds();
}

function makeUniqueUrl(sUrl) {
    var now = new Date();
        
    if (sUrl.indexOf("javascript:") == 0) {
        return sUrl;
	}
    else {
        return sUrl + (sUrl.indexOf("?") == -1 ? "?" : "&amp;") + "cc=" + now.getMilliseconds();
	}
}
