function createBulletin() {
  bulletinupdater.stop();
  new Ajax.Updater( 'bulletin', 'createbulletin.php', { method: 'post' } );
}

function contactSeller(postNumber) {
var url="contactseller.php";
url=url+"?postnumber="+postNumber;
 new Ajax.Updater( 'contactseller', url, { method: 'post' } );
}

function sendMsg() {
  new Ajax.Updater( 'contactseller', 'contactseller.php', { method: 'post', parameters: $('msgForm').serialize() } );
  $('msgForm').reset();
}

function createFYI() {
  fyiupdater.stop();
  new Ajax.Updater( 'fyi', 'fyi.php', { method: 'post' } );
}

function addFYI() {
  tinyMCE.triggerSave();
  tinyMCE.execCommand('mceRemoveControl', false, 'info');
  new Ajax.Updater( 'fyi', 'fyiadd.php', { method: 'post', parameters: $('FYIForm').serialize() } );
  $('FYIForm').reset();
  fyiupdater.start();
}

function getAnswer(id) {
var url="faq.php";
url=url+"?answer="+id;
new Ajax.Updater('faq', url, { method: 'post' } );
}

function sellAcc(id) {
var url="accsell.php";
url=url+"?acc="+id;
new Ajax.Updater('acctype', url, { method: 'post' } );
}

function searchAcc(id) {
var url="accessorybuy.php";
url=url+"?acc="+id;
new Ajax.Updater('acctype', url, { method: 'post' } );
}

function fyiByStation(station) {
var url="fyibystation.php";
url=url+"?station="+station;
fyiupdater.stop();  new Ajax.Updater( 'fyi', url, { method: 'post' } );
}
function viewAll() { fyiupdater.start(); new Ajax.Updater( 'fyi', 'newfyi.php', { method: 'post' } );}

