function openPicture(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {  // v4.01
       newWindow= window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
       newWindow.document.open();
       newWindow.document.write('<html><title>' + alt + '</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()" onClick="self.close()">');
       imageHeight = imageHeight-25;
     
       newWindow.document.write('<img src=\"'+imageName+'\" width=\"'+imageWidth+'\" title=\"Dr&uuml;cken sie auf das Bild, um das Fenster zu schliessen\" />');
       
       imageHeight = imageHeight-26;
     
       newWindow.document.write('</body></html>');
       newWindow.document.close();
       newWindow.focus();
/*       <!--background=\"'+imageName+'\" --> */
}

var Timer;

function ScrollLeft()
{
  Timer = setInterval("document.getElementById('scroll_p').scrollLeft -= 6", 10);
}
function ScrollRight()
{
  Timer = setInterval("document.getElementById('scroll_p').scrollLeft += 6", 10);
}

function Stop_scroll()
{
  Timer = setInterval("document.getElementById('scroll_p').scrollLeft += 0", 0);
}                            
