function popImage(imagePath, bImg)
{
  var windowwidth = 600;
  var windowheight = 450;
  var screenwidth = screen.width;
	var screenheight = screen.height;
	
	var left = Math.round((screenwidth - parseInt(windowwidth)) / 2);
	var top = Math.round((screenheight - parseInt(windowheight)) / 2);

  var imageUrl = 'pics/'+imagePath+'.jpg';
  
  if (bImg)
    imageUrl = 'images/'+imagePath+'.jpg';
    
  imgWin = window.open('about:blank','',"menu=0,statusbar=0,toolbar=0,left="+left+",top="+top+",width=600px,height=450px");
  
  with (imgWin.document){
    writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
    writeln('<html><head><title>Palóc Népművészeti és Háziipari szövetkezet<\/title>');
    writeln('<\/head><body bgcolor="#FFFFFF" style="margin:0px;padding:0px;" onblur="this.close();">');
    writeln('<img src="'+imageUrl+'" width="600" height="450" border="0" alt="" onclick="window.close();" onmouseover="this.style.cursor=\'pointer\'";\/><\/body><\/html>');
    close();
  }
}


