﻿function createCSSRef(url) {
    var obj = document.createElement("link");
    obj["href"] = url;
    obj["rel"] = "stylesheet";
    obj["type"] = "text/css";
    return obj;

}
