window.addEvent('domready', function() {
 
    var sendafriend = $('sendafriend');
    if(sendafriend) {
 
        // do not hide send-a-friend form
        if( $('safsuccess') || $('saferror') ) {
 
            var sendafriend_status = true;
 
        } else {
 
            var sendafriend_status = false;
            sendafriend.setStyle('display', 'none');
 
        }
 
        $('safbutton').addEvent('click', function(r) {
 
            if(sendafriend_status == true) {
 
                sendafriend.setStyle('display', 'none');
                sendafriend_status = false;
 
            } else {
 
                sendafriend.setStyle('display', '');
                sendafriend_status = true;
 
            }
 
        });
 
    }
});