function change_puce() {
var styleNode = document.createElement('link');
styleNode.setAttribute('rel',  'stylesheet');
styleNode.setAttribute('type', 'text/css');
styleNode.setAttribute('href', 'css/puce.css');
document.getElementsByTagName('head')[0].appendChild(styleNode);
}

function change_default() {
var styleNode = document.createElement('link');
styleNode.setAttribute('rel',  'stylesheet');
styleNode.setAttribute('type', 'text/css');
styleNode.setAttribute('href', 'css/qesign.css');
document.getElementsByTagName('head')[0].appendChild(styleNode);
}

function change_dblue() {
var styleNode = document.createElement('link');
styleNode.setAttribute('rel',  'stylesheet');
styleNode.setAttribute('type', 'text/css');
styleNode.setAttribute('href', 'css/dblue.css');
document.getElementsByTagName('head')[0].appendChild(styleNode);
}

function change_grey() {
var styleNode = document.createElement('link');
styleNode.setAttribute('rel',  'stylesheet');
styleNode.setAttribute('type', 'text/css');
styleNode.setAttribute('href', 'css/grey.css');
document.getElementsByTagName('head')[0].appendChild(styleNode);
}
