wday_factor <- function(Dates){
    require(lubridate)
    factor(wday(Dates,label=TRUE),ordered=FALSE)
}
glm_predict_interval <- function(m,newdata,se=2){
    p = predict(m,newdata,se=TRUE)
    pR = predict(m,newdata,type="response")
    p = data.frame(low=exp(p$fit-se*p$se),high=exp(p$fit+se*p$se))
    p$Count = pR
    p
        
}
toJSDateNum <- function(Dates){
    as.numeric(Dates)*1000*24*60*60
}
## load one thing from a saved data file with one thing in it
loadFrom=function(name){
    e = new.env()
    load(name,env=e)
    names = with(e,ls())
    stopifnot(length(names)==1)
    return(get(names,envir=e))
}
  
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.