function BigPic(pic,message)
{
  newwin=window.open(pic,'newwin','toolbar=no, menubar=no, scrollbars=no, resizable=no, width=600,height=510')
  newwin.document.open();
  newwin.document.write('<html><head><title>Bergman Euro-National</title></head>');
  newwin.document.write('<body>');
  newwin.document.write('<table width="100%"><tr><td><img src="/images/graphs-big/'+pic+'" alt="'+message+'" /></td></tr><tr><td align="center"><br /><a style="font: 14px verdana; color:#4d4d4d;" href="javascript:window.close()">Close</a></td></tr></table>');
  newwin.document.write('</body></html>');
}


function BigPic2(pic,message)
{
  newwin=window.open(pic,'newwin','toolbar=no, menubar=no, scrollbars=no, resizable=no, width=650,height=510')
  newwin.document.open();
  newwin.document.write('<html><head><title>Bergman Euro-National</title></head>');
  newwin.document.write('<body>');
  newwin.document.write('<table width="100%"><tr><td><img src="/images/inventory/'+pic+'" alt="'+message+'" /></td></tr><tr><td align="center"><br /><a style="font: 14px verdana; color:#4d4d4d;" href="javascript:window.close()">Close</a></td></tr></table>');
  newwin.document.write('</body></html>');
}


var i=1;
var j=0;
function Next() {
if(i > 32)
{
return;
}

var mydiv; 
var myvdiv;

 j=i+1;	
 mydiv = 'mydiv'+i; 
 myvdiv = 'mydiv'+j;
document.getElementById(mydiv).style.display = 'none';
document.getElementById(myvdiv).style.display = '';
i=i+1;
}
function Back() {
if(i < 2)
{
return;
}

var mydiv; 
var myvdiv;

 j=i-1;	
 mydiv = 'mydiv'+i; 
 myvdiv = 'mydiv'+j;
document.getElementById(mydiv).style.display = 'none';
document.getElementById(myvdiv).style.display = '';
i=i-1;
}