function tell_a_friend()
{
if(document.getElementById('tell_a_friend').className=='popup_off')
{
document.getElementById('tell_a_friend').className='popup_on';
}
else
{
document.getElementById('tell_a_friend').className='popup_off';
}
document.getElementById('add_to_my_list').className='popup_off';
}
function add_to_my_list()
{
if(document.getElementById('add_to_my_list').className=='popup_off')
{
document.getElementById('add_to_my_list').className='popup_on';
}
else
{
document.getElementById('add_to_my_list').className='popup_off';
}
document.getElementById('tell_a_friend').className='popup_off';
}
function close_popups()
{
document.getElementById('tell_a_friend').className='popup_off';
document.getElementById('add_to_my_list').className='popup_off';
}
function send_to_friend_form()
{
makeRequest('_tell_a_friend.inc.php?your_name=' + escape(document.tell.your_name.value) + '&your_email=' + escape(document.tell.your_email.value) + '&friend_name=' + escape(document.tell.friend_name.value) + '&friend_email=' + escape(document.tell.friend_email.value) + '&text=' + escape(document.tell.text.value) + '&send=on','tell_a_friend');
document.tell.send.value='Sending...';
}
function add_to_my_list_form()
{
makeRequest('_add_to_my_list.inc.php?add=on&text=' + document.addto.text.value,'add_to_my_list');
document.addto.send.value='Sending...';
}
function print_this_page()
{
var text=document.getElementById('page_print').innerHTML;
document.getElementById('content_text').value=text+'