/************************************** Splendid *************************************
* Created By:		Jill Yosar
* Creation Date:	23rd September 2009
* Edited ----------------------------------------------------------------------------
*      By:              On:  
* Description -----------------------------------------------------------------------
*      This file handles the contact us page
*      Uses JQuery.
*      Example: 
*           1.6_Contact-us.html
*
* Functions -------------------------------------------------------------------------
*       
*       
*       
* Event Handlers --------------------------------------------------------------------
*       
*       
*       
**************************************************************************************/

/********************************** Global Variables *********************************/

function addPortal()
 {
 	// Move the items from one box to the other
    $('#AllPortals option:selected').remove().appendTo('#SelectedPortals').removeAttr("selected");
 }
    
 function removePortal()
 {
 	// Move the items from one box to the other
    $('#SelectedPortals option:selected').remove().appendTo('#AllPortals').removeAttr("selected");
 }
    
 function submitForm()
  {
  	// now make sure they're set as selected before submitting the form
    $('#SelectedPortals option').attr('selected', 'selected'); 
    document.getElementById('contactForm').submit();

    return false;
  }




