function printPreview(stylesheet) {
  // alert('at least something happens')
  // Switch the stylesheet 
  setActiveStyleSheet(stylesheet);
  // Print the page
  
  if(stylesheet == "Print Preview"){
    window.print();
  }
  
}

function printWindow(link){
  window.print();
}

function setActiveStyleSheet(title){  // select the stylesheet
   // var i, a, main;
   // for(i=0; (a = document.getElementsByTagName("link") [i]); i++) {
   //   if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
   //     a.disabled = true;
   //     if(a.getAttribute("title") == title) a.disabled = false;
   //   }
   // }
  $$('link').each(function(link){
    if(link.title && (link.rel.split(' ').last() == 'stylesheet')){ 
      link.disabled = true;
      if(link.title == title){
        link.disabled = false;
      } 
    }
  })
}




