
//noweOkienko = null;
function galeria(src, w, h){
if(window.screen){
 aw=screen.availWidth;
 ah=screen.availHeight;
}else{
 aw=640;
 ah=450;
}
//if(noweOkienko==null || noweOkienko.closed){
 ustawienia=
 "left=" + (aw-w)/2 + ","
 +"top=" + (ah-h)/2 + ","
 +"screenX=" + (aw-w)/2 + ","
 +"screenY=" + (ah-h)/2 + ","
 +"width=" + w + ","
 +"height=" + h + ","
 +"innerWidth=" + w + ","
 +"innerHeight=" + h + ","
 +"toolbar=no,"
 +"location=no,"
 +"directories=no,"
 +"status=no,"
 +"menubar=no,"
 +"scrollbars=no,"
 +"resizable=no"
noweOkienko = window.open("",'obrazek',ustawienia);
//}
noweOkienko.document.open();
noweOkienko.document.clear();
noweOkienko.document.write(
"<html><head>\n"
+"<title>ProInvest</title>\n"
+"<style><!--\n"
+"body{background-repeat:no-repeat; background-position: center center; }\n"
+"--></style>\n"
+"</head>\n"
+'<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n' // background=" + src + "
+'<table width="100%" height="100%" cellspacing="0" cellpadding="0" border="0" align="center">'
+'<tr><td width="100%" height="100%" align="center">'
+'<img src="' + src + '" />'
+"</td></tr></table></body>\n"
+"</html>"
);
noweOkienko.document.close();
noweOkienko.focus();
}

function polec_strone()
{
	var adres = document.getElementById("email_polec");
	var expression = /^\w([-\.]\w|\w)*@\w([-\.]\w|\w)*\.[a-zA-Z]{2,4}$/;
	if (!expression.test(adres.value))
	{
		alert('Niepoprawny adres e-mail!');
		adres.focus();
		return;
	}
	displayWindow('mail.php?act=polec&email='+adres.value+'&lang=<? echo $lang; ?>','mywin','left=20,top=20,width=500,height=200,toolbar=1,resizable=0');
	adres.value=' wpisz e-mail';
}

function send_info()
{
	var adres_info = document.getElementById("adres_info");
	var expression = /^\w([-\.]\w|\w)*@\w([-\.]\w|\w)*\.[a-zA-Z]{2,4}$/;
	if (!expression.test(adres_info.value))
	{
		alert('Niepoprawny adres e-mail!');
		adres_info.focus();
		return;
	}
	displayWindow('mail.php?act=info&email='+adres_info.value+'&lang=<? echo $lang; ?>',400,250);
	adres_info.value=' Twój e-mail';
}

function displayWindow(url, width, height) 
{
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=no,menubar=no' );
}