function Buy(id)
{
	document.cookie = "fly=show";
	ShowPurchase();

	var a = window.open("/index.php?mod=buy&prod_id=" + id, "Buy", "top=100, left=100, width=640, height=520, buttons=No, scrollbars=Yes, location=No, menubar=No, resizable=Yes, status=No, directories=No, toolbar=No, statusbar=No, copyhistory=No");
	if(a != null)
	{
		a.focus();
	}
}