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+'


Copyright © 2010 Infant & Toddler Forum. All rights reserved.
The information within this website is for healthcare professional use and represents the independent views of the Forum members with whom copyright rests.
This website is owned by Danone UK; registered company number 00275552. Registered address: Newmarket House Newmarket Avenue White Horse Business Park Trowbridge Wiltshire BA14 0XQ
'; document.fprint.submit(); } function bookmark(url,title) { var aN=navigator.appName; var aV=navigator.appVersion; var pV=Number(parseInt(aV)); //alert(pV); var istrue=0; if(pV >=4 ) { istrue=1; } if( aN == 'Microsoft Internet Explorer' && istrue ) { //alert(window.external); window.external.addfavorite(url,title); } else if (aN == 'Netscape') { window.sidebar.addPanel(title,url,""); } else { alert('Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark'); } }