//----------------------------------------------------------------------------
function StylePrintOn() {
  var inHead = document.documentElement.firstChild.childNodes;
  for (i=0; i<inHead.length; i++) {
  	if (inHead[i].nodeName == 'LINK') {
  		str = inHead[i].getAttribute("href");
  		str = str.substring(str.length-8);
  		if (str == "null.css") {inHead[i].setAttribute("href","/include/print.css");}
  	}
  }
  var obj = document.getElementById("switch_style");
  obj.innerHTML="Полная версия";
  obj.setAttribute("href","javascript: StylePrintOff()");
}
//----------------------------------------------------------------------------
function StylePrintOff() {
  var inHead = document.documentElement.firstChild.childNodes;
  for (i=0; i<inHead.length; i++) {
  	if (inHead[i].nodeName == 'LINK') {
  		str = inHead[i].getAttribute("href");
  		str = str.substring(str.length-9);
  		if (str == "print.css") {inHead[i].setAttribute("href","/include/null.css");}
  	}
  }
  var obj = document.getElementById("switch_style");
  obj.innerHTML="Версия для печати";
  obj.setAttribute("href","javascript: StylePrintOn()")
}
//----------------------------------------------------------------------------
function _mouseover(node) {
  node.className="over ";
}
//----------------------------------------------------------------------------
function _mouseout(node) {
  node.className="";
}
//----------------------------------------------------------------------------

