// JavaScript Document

function openWindow(url) {
  newwindow = window.open(url,"JSL",'toolbar=0,location=0,scrollbars=0,width=300,height=300,resizable=0,top=20,left=20');
  newwindow.focus();
}

function openWindow1() {
  window.open(url,"PRINT",'toolbar=0,location=0,scrollbars=1,width=655,height=600,resizable=0,top=20,left=20');
}

function hiOn(obj) {
  backColor = obj.style.backgroundColor;
  textColor = obj.style.color;
  obj.style.backgroundColor = "#ff9933";
  obj.style.color = "#000000";
}

function hiOff(obj) {
  obj.style.backgroundColor = backColor;
  obj.style.color = textColor;
}

/* Autor: Vladimir Belohradsky info@lweek.net */

function scroll_Left(id) {
  /*if (0 < document.getElementById(id).scrollLeft) {*/    
    document.getElementById(id).scrollLeft = document.getElementById(id).scrollLeft - 2;
}

function scroll_Right(id) {
  /*if (document.getElementById(id).offsetWidth > document.getElementById(id).scrollLeft) {*/         
    document.getElementById(id).scrollLeft = document.getElementById(id).scrollLeft + 2;
}

