/**
*
* Print Preview
*
*/
var truePrint = false;

function PrintOrNot() {
  var myPrint = location.search;
  if (myPrint.indexOf("print=true") > -1) {
    truePrint = true;
  }
}
PrintOrNot();

function printWindow(x) {
  window.open(x+"?print=true","_new","toolbar=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes");
}

if (truePrint == true) {
  document.write('<style type="text/css" media="screen">@import url(/SYSTEM/css/styles_print.css);</style>');
}

function changeImg(name,ref) {
  document.images[name].src = ref;
}

function changeColor(name,color) {
  document.getElementById(name).style.color = color;
}