function emailToFriend()
{
    if (typeof(emailToFriendWindow) == 'undefined' || emailToFriendWindow.closed)
    {
        var iMyWidth;
        var iMyHeight;
        //half the screen width minus half the new window width (plus 5 pixel borders).
        iMyWidth = (window.screen.width/2) - (250 + 10);
        //half the screen height minus half the new window height (plus title and status bars).
        iMyHeight = (window.screen.height/2) - (270 + 50);
        //Open the window.
        emailToFriendWindow = window.open('/email-to-friend.php?resetControls=true&page=' + window.location.href, '','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=640,left=' + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight);
    }
    else
    {
        emailToFriendWindow.focus();
    }
}

$(document).ready(function() {
	$('#bookmark').jFav();
});
