function onABCommComplete()
{
    $('#flash-rockets').flash(function(){this.addEmailAdresses(document.getElementById('recipient_list').value);})
}

function callPlaxo()
{
    showPlaxoABChooser('recipient_list', 'widget/widget.html');
}


$(document).ready(
    function () {
        $('#flash-rockets').flash(
        {
            wmode: 'transparent',
            swf: 'contactform.swf',
            params: {
                play: false
            },
            flashvars: {
                purpose:'[{ "label":"First Choice", "data":"First Choice"},{ "label":"Second Choice", "data":"Second Choice"},{ "label":"Third Choice", "data":"ThirdChoice"}]',
                budget:'[{ "label":"First1 Choice", "data":"First Choice"},{ "label":"Second Choice", "data":"Second Choice"},{ "label":"Third Choice", "data":"ThirdChoice"}]',
                errorEmail:"plaese input correct email",
                succesMessage:'check your mail for confirm',
                advertext:"<b>This text is bold</b> and <i>This text is italic</i>",
                adverurl:"http://www.google.com"
            },
            height: '100%',
            width: '100%'
        }
        );
    }
    );

