
//*******************************************************************************************************
function popdown(kep){


	
var width=780;
	var height=550;
	if(window.innerWidth){
	LeftPosition =(window.innerWidth-width)/2;
	TopPosition =((window.innerHeight-height)/4)-50;
			}
	else{
	LeftPosition =(parseInt(window.screen.width)-	width)/2;
	TopPosition=((parseInt(window.screen.height)-height)/2)-50;
			}
	attr = 'resizable=yes,scrollbars=yes,width=' + width + ',height=' +
	height + ',screenX=780,screenY=200,left=' + LeftPosition + ',top=' +
	TopPosition + '';
	
	popWin=open('', 'new_window', attr);
	popWin.document.write('<head><title>Lavamac</title></head>');

popWin.document.write('<body><div align="center">');

popWin.document.write('<img id="kepi" src="pict/' + kep +'">');
popWin.document.write('</body></html>');

//popWin.resizeTo(eval(popWin.document.getElementById('kepi').width+50),eval(popWin.document.getElementById('kepi').height+85));
}





//******************************************************************************************



