function addCss(cssname) {
var the = document.getElementsByTagName('head')[0];
var se = document.createElement('link');
se.setAttribute('href',cssname);
se.setAttribute('type','text/css');
se.setAttribute('rel','stylesheet');
the.appendChild(se);
}


addCss('http://imgs4.iexplorehere.com/books_style/style_stars_rating.css');
addCss("http://imgs4.iexplorehere.com/style_comments.css");
addCss("http://imgs4.iexplorehere.com/style_userprocess.css");
addCss('http://imgs4.iexplorehere.com/style_media.css');