﻿// JScript 文件
function loadCss(file){
var head = document.getElementsByTagName('head').item(0);
css = document.createElement('link');
css.href = file;
css.rel = 'stylesheet';
css.type = 'text/css';
css.id = 'loadCss';
head.appendChild(css);
}
