var ie = false;
if (window.ActiveXObject)
{
	ie = true;
}

function popup_privacy()
{
	window.open('/privacy/', 'ratings', 'toolbar=0,location=0,directories=0,menubar=0,width=850,height=600,resizeable=0,status=0,scrollbars=1');
}

function load_email()
{
	postdata = "func=load_email";
	document.getElementById('email-wrapper').style.display = "block";
	ax_request('/scripts/bgs.ajax.php', 'email', postdata);
}

function close_email()
{
	document.getElementById('email').innerHTML = '';
	document.getElementById('email-wrapper').style.display = "none";
}

function add_bookmark(url, title)
{
	if (ie)
	{
		window.external.AddFavorite("http://www.babygiftstore.com" + url, title);
	}
	else
	{
		moztext = "Page: " + title + "\n";
		moztext += "We were not automatically able to add a bookmark for your browser.\n";
		moztext += "Please press OK, and then press Ctrl+D or use your browser's bookmark feature to save this page.";
		alert(moztext);
	}
}

function send_email()
{
	postdata = "func=send_email";
	postdata += "&sender_email=" + document.getElementById('sender_email').value;
	postdata += "&recip_email=" + document.getElementById('recip_email').value;
	if (document.getElementById('cc_sender').checked)
	{
		postdata += "&cc_sender=true";
	}
	postdata += "&sender_message=" + document.getElementById('sender_message').value;
	postdata += "&prod_id=" + prod_id;
	ax_request('/scripts/bgs.ajax.php', 'email', postdata);
}
