// JavaScript Document
function openPopup(url, name, width, height, no_features)
{
if (width == null) {width = 440;}
if (height == null) {height = 450;}

var feature = 1;
if (no_features == 1) {feature = 0;}

var popup = window.open(url, name, "height="+height+",width="+width+",channelmode=0,dependent=0,directories=0,fullscreen=0"+",location=0,menubar=0,resizable="+feature+",scrollbars="+feature+",status="+feature+",toolbar=0");
popup.focus();
}

function contact()
{
	document.write("<a href=mailto:marta.eleniak@meleniak.com>marta.eleniak@meleniak.com</a>")
}