// JavaScript Document
function MenuHover(imgId)
{
	document.getElementById(imgId).src='../bank/gui/'+imgId+'-hover.jpg';
}
function MenuOut(imgId)
{
	document.getElementById(imgId).src='../bank/gui/'+imgId+'.jpg';
}

/*
function openPictureWindow_Fever(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt="'+alt+'">'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
*/

function ImgPopup(imageName)
{
	popper = window.open("","ImagePopup","width=100,height=100,left=20,top=20");
	imager = new Image();
	imager.src = imageName;
	popper.document.open();
	//popper.resizeTo(winWidth,winHeight);
	popper.document.write("<html><head><title>AET</title></head><body style='margin:0;padding:0;' margintop='0' marginleft='0' marginright='0' marginbottom='0'><center><img src='"+imageName+"' alt='' border='0' onLoad=\"imager = new Image();imager.src = '"+imageName+"';winWidth=imager.width+22;winHeight=imager.height+65;window.resizeTo(winWidth,winHeight);\"></center></body></html>");
	popper.document.close();
	popper.focus();
}