<!--
function getOver(Img) {
	Img.src=Img.src.substring(0,Img.src.length-4)+"_K"+Img.src.substring(Img.src.length-4,Img.src.length);
}
	
function getOut(Img) {
	Img.src=Img.src.substring(0,Img.src.length-6)+Img.src.substring(Img.src.length-4,Img.src.length);
}

function openPicture(imageName,imageWidth,imageHeight,alt,lowImg){

if (imageWidth<=(screen.width-10)) {
 if (imageHeight<=(screen.height-25)){
   var posLeft = (screen.width-10)/2-imageWidth/2;
   var posTop = ((screen.height-25)/2-imageHeight/2);
   var wWidth = imageWidth;  
   var wHeight = imageHeight;
   var s = "";
  }
 if (imageHeight>(screen.height-25)){
   var wWidth = eval(imageWidth)+22;  
   var posLeft = (screen.width-30)/2-imageWidth/2;
   var posTop = 0;
   var wHeight = screen.height-33;
   var s = ",scrollbars=yes";
 }

if (imageWidth>(screen.width-10)) {
 if (imageHeight<=(screen.height-25)){
   var posLeft = 0;
   var posTop = (screen.height-50)/2-imageHeight/2;
   var wWidth = screen.width-10;  
   var wHeight = imageHeight+25;
   var s = ",scrollbars=yes";
  }
 if (imageHeight>(screen.height-25)){
   var posLeft = 0;
   var posTop = 0;
   var wWidth = screen.width-10;  
   var wHeight = screen.height-35;
   var s = ",scrollbars=yes";
  }
 }

newWindow = window.open("","","width="+wWidth+",height="+wHeight+",left="+posLeft+",top="+posTop+s);
newWindow.document.open();
var aStr= '<html><title>'+alt+'</title>'
aStr=aStr+ '<body bgcolor="#000030" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'
aStr=aStr+ '<center><table background="'+lowImg+'" width="'+imageWidth+'" align="center" border=0 cellspacing=0 cellpadding=0><tr><td background="'+lowImg+'">';

aStr=aStr + '<img src='+imageName+' onClick="self.close()" >';

aStr=aStr + '</td></tr></table></center></body>';
newWindow.document.write(aStr);
newWindow.document.close();
newWindow.focus();

l=2;
}
}
// -->