// need to check if native widget is being used or if coming from flash widget.


var url = window.location.href;
var qs = url.substr(url.indexOf('?')+1);

if (qs.indexOf('qa3=') > 0) {
    // Coming from the flash widget.  Build answers page
    document.write('<iframe src="http://widgetfactory.causecast.org/finra/wa.htm?'+qs+'" width="530" height="300" marginheight="0" marginwidth="0" scrolling="no" frameborder="0"></iframe>');

} else {
    document.write('<iframe src="http://widgetfactory.causecast.org/finra/wua.htm" width="530" height="300" marginheight="0" marginwidth="0" scrolling="no" frameborder="0"></iframe>');
}

