function displayEmail(user, domain, name, subject) {
	document.write('<a href="mailto: ' + user + '&#64;' + domain + '?subject=' + subject +'">' + name + '</a>');
}

function key() {
	k = document.getElementById('key');
	k.style.visibility = 'visible';
	//alert(k.style.visibility);
}

function showImg( img_src, img_w, img_h ) {
   var popup = window.open('','','width=' + img_w + ',height=' + img_h + ',resizable=0,scrollbars=no,menubar=no');
   popup.document.open();
   popup.document.write('<html><head><title>Dziedzice<\/title><\/head>');
   popup.document.write('<body style="margin: 0;padding: 0;">');
   popup.document.write('<a href="javascript:window.close();" style="margin: 0 ;border: none; padding: 0;"><img style="margin: 0;border: none;padding: 0;" src=' + img_src + ' /></a>');
   popup.document.write('<\/body><\/html>');
//   popup.document.focus();
   popup.document.close();
}


function displayWindow(url, width, height, name) {
	//window.open(url,name,'width='+width+',height='+height+',name="name",resizable=0,scrollbars=no,menubar=no');
	clientW = screen.width;
	clientH = screen.height;
	if (height > clientH) {
		scrollValue = 'yes';
		width = width+19; //19 - szerokosc scrolla
		newHheight = clientH-100; //zmienijszenie wysokosci do wymiarow clienta
	} else {
		scrollValue = 'no';
		newHheight = height;
	}
	w = window.open(url,name,'width='+width+',height='+newHheight+',name="name",resizable=0,scrollbars='+scrollValue+',menubar=no');
	w.moveTo(clientW/2-width/2, clientH/2-newHheight/2);
}

