mciPlot <- function(x,...){
  g = graph.adjacency(adjmatrix=x$adjMat, mode="undirected")
   
  
  #V(g)$label <- V(g)$name
  #V(g)$size  <- 50
  #g$cex      <-  4
  #V(g)$label.cex <- 1.2
  
  V(g)$color <- "grey"
  
  
  #g$layout <- layout.lgl
  plot(g)
  return(invisible(x))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.