var cssmodel='';
function appendCss(cssid){
if (cssmodel.indexOf(cssid) == -1){
document.writeln("");
cssmodel = cssmodel + '|' + cssid;
}
}
function appendwapCss(cssid){
if (cssmodel.indexOf(cssid) == -1){
document.writeln("");
cssmodel = cssmodel + '|' + cssid;
}
}
function loadStyleString(cssText) {
var style = document.createElement("style");
style.type = "text/css";
try{
style.appendChild(document.createTextNode(cssText));
}catch(ex) {
style.styleSheet.cssText = cssText;
}
document.getElementsByTagName("head")[0].appendChild(style);
}
appendCss("inc");
appendCss("pc");
appendCss('4015');
var css = '';
loadStyleString(css);