// JavaScript Document

function sendToFriend(url, title) {
	width = 350;
	height = 400;

	left = (window.screen.width-width)/2;
	top = (window.screen.height-height)/2;

	window.open('send-to-friend.php?url='+url+'&title='+title, 'Pictures', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width='+width+',height='+height+',left='+left+',top='+top);
}
