////////////////////////////////////////////////////////////////////////////////
// File name: marketingpicture.js
// Description: The Javascripts for the marketingpicture.
////////////////////////////////////////////////////////////////////////////////
  

// show flash table and hide image table
function showFlash() {
  // Get the field 
  show('marketingFlash');
  hide('marketingImage');         
}    

// show image table and hide flash table
function showImage() {
  // Get the field 
  show('marketingImage');
  hide('marketingFlash');        
}    
