function showFoto (mod, id, foto)
{
	my_win = window.open ('index.php?m=foto&s=show&mod='+mod+'&id='+id+'&foto='+foto, 'FotoBrowser', 'menubar=no, toolbar=no, location=no, scrollbars=yes, resizable=yes, status=no');
	my_win.focus ();
}

function voteShop (sid, info_id, num_id)
{
	var http = createRequestObject();

	http.open('get', 'script.php?m=shop&s=vote&sid='+sid, true);
	inf_el = document.getElementById (info_id);
	if (inf_el)	inf_el.innerHTML = '<img src="theme/default/img/loading.gif" />';

	http.onreadystatechange = function () {
		if (http.readyState == 4)
		{
			res_code = parseInt(http.responseText.substr (0, 1));
			inf_el.innerHTML = '';
			if (res_code == 1 && document.getElementById (num_id))
			{
				num_el = document.getElementById (num_id);
				num_el.innerHTML = parseInt(num_el.innerHTML)+1;
			}
			if (res_code == 0)
				inf_el.innerHTML = http.responseText.substr (2)
		}
	}
	http.send (null);

}

