		function open_pic(pic_src, pic_width, pic_height, newW) {
			if (newW) {
				ff = window.open('about:blank','_blank','width='+pic_width+', height='+pic_height+', menubar=0,statusbar=0,scrollbar=auto,titlebar=0,toolbar=0,fullscreen=1');
				ff.document.write('<html><body leftmargin="0" rightmargin="0" bottommargin="0" topmargin="0"><img src="'+pic_src+'" alt="" border="0" onclick="window.close();"></body></html>');
				ff.document.close();
				ff.focus();
			}
			else 	window.location.href = 'index.php?page=show_image&image='+pic_src;
		}
		function registerEmail() {
			$.post("register_email.php", { email: $('#newsletterMail').attr('value') },
			   function(data){
					if (data.status == 'ok') $('#newsletterMail').attr( {value : '@'});
					alert(data.msg);
				}, "json");
		
		}