function displayPage(url, name, width, height, scrollvalue) {
	w = window.open(url, name, 'width='+width+', height='+height+', scrollbars='+scrollvalue+', menubar=no, resizable=0');
	w.moveTo(screen.width/2-width/2, screen.height/2-height/2);
}

function showImg( img_src, img_w, img_h, img_name ) {
  clientW = screen.width;
	clientH = screen.height;
	img_w_n = img_w; //img_w_n = img_w+20;
	img_h_n = img_h; //img_h_n = img_h+20;
	img_w_o = img_w;
	if (img_h > clientH) {
		scrollValue = 'yes';
		img_w = img_w+19; //19 - szerokosc scrolla
		newHheight = clientH-100; //zmienijszenie wysokosci do wymiarow clienta
	} else {
		scrollValue = 'no';
		newHheight = img_h;
	}
	
   popup = window.open('',img_name,'width='+img_w+',height='+newHheight+',name="name",resizable=0,scrollbars='+scrollValue+',menubar=no');
   popup.moveTo(clientW/2-img_w/2, clientH/2-newHheight/2);
   popup.document.open();
   
   popup.document.write('<html><head><title>'+img_name+'<\/title><\/head>');
   
   popup.document.write('<body style="margin: 0;padding: 0; position: relative;">');
   popup.document.write('<a href="javascript:window.close();" style="margin: 0 ;border: none; padding: 0;"><img style="margin: 0;border: 0px solid #eeeeee;padding: 0;" src=' + img_src + ' /></a>');
   //popup.document.write('<br /><div style="position: absolute; top:10; left: 10; background-color: #ffffff; filter:alpha(opacity=55); opacity:.55; width: '+img_w_o+'; padding: 3px 0; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;"><p style="margin: 0 3px; padding: 0;">'+img_name+'<\/p><\/div>');
   popup.document.write('<\/body><\/html>');
   
//   popup.document.focus();

   popup.document.close();
   
}

