//<![CDATA[

function show_image(jaki,szer,wys,tytul) {
    popup=window.open('about:blank','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no, fullscreen=no,channelmode=no,width='+szer+ ',height=' +wys+ ',top=100,left=100');
	with(popup.document) {
		open();
		write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>'+tytul+ '</title></head><body style="margin:0;padding:0;border:0"><img onclick="window.close();" src="'+jaki+ '" style="display:block;" alt="' +tytul+ '" /></body></html>');
		close();
	}
}


function show_popup(src, windowname, width, height, resizable) {
	options = 'toolbar=no,location=no,directories=no,status=no,menubar=no,channelmode=no,scrollbars=yes';
	if (width != null)
		options += ',width='+width;
	if (height != null)
		options += ',height='+height;
	if (resizable != null)
		options += ',resizable='+resizable;
    popup = window.open(src,windowname,options);    
    popup.focus();
}


function show_email(user,domain) {
        s1 = "mailto:" + user + "@" + domain + "?subject=Ze strony 'Nasze wyprawy'";
        window.location = s1; 
}

//]]>
