function emailProtectJavascript(user, domain, name) {
document.write('<a href="mailto:' + user + '&#64;' + domain + '">' + name + '</a>');
}

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);
}

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);
}
