function __add_to_wishes() 
{
	/*var d=document;
	var f=d.createElement("form");
	var u=d.createElement("input");
	u.type="hidden";
	u.name="url";
	u.value=document.location.href;
	f.action="http://wishes.in.ua/wishes/add_from_url/";
	//f.target="_top";
	f.target="_blank";
	f.method="post";
	f.appendChild(u);
	d.body.appendChild(f);
	f.submit()*/
	document.getElementById("url").value = document.location.href;
	document.forms['wish_list'].submit();
};
