function pop_pic(file,width,height,name)
{
	var xPos = (screen.availWidth / 2) - (width / 2);
	var yPos = (screen.availHeight / 2) - (height / 2) - 20;
	fx_window =window.open('',name,'top='+yPos+',left='+xPos+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height);
	fx_window.document.open();
	fx_window.document.write('<html><head><title>I-SZERVÍZ Kft.</title></head><body leftmargin="0" topmargin="0" bottommargin="0" rightmargin="0" bgcolor="#ffffff">');
	fx_window.document.write("<a href='javascript:window.close()'><img src='"+file+"' border='0' alt='Bezárás'></a></body></html>");
	fx_window.document.close();
}

