//(c) Weigold & Partner - www.weigold.com

function openWindow(theURL,winName,features) 
{
  window.open(theURL,winName,features);
}

function windowAlignLeft()
{
  window.moveTo(-1,-1);
  window.focus();
}

function windowMaximize()
{
  window.resizeTo(screen.availWidth,screen.availHeight);
  window.moveTo(-1,-1);
}
  
function pictureChange(number,object)
{
  //Setze die Bildernamen inkl. Pfad
  Normal0    = new Image(); Normal0.src    = "../images/daumen.jpg";
  Highlight0 = new Image(); Highlight0.src = "../images/geschichte.gif";
  Normal1    = new Image(); Normal1.src    = "images/mis.gif";
  Highlight1 = new Image(); Highlight1.src = "images/mis_focus.gif";
  Normal2    = new Image(); Normal2.src    = "images/zeiterfassung.gif";
  Highlight2 = new Image(); Highlight2.src = "images/zeiterfassung_focus.gif";
  Normal3    = new Image(); Normal3.src    = "images/traffic.gif";
  Highlight3 = new Image(); Highlight3.src = "images/traffic_focus.gif";
  Normal4    = new Image(); Normal4.src    = "images/insight.gif";
  Highlight4 = new Image(); Highlight4.src = "images/insight_focus.gif";
  
  window.document.images[number].src = object.src;
}


