//
// Copyright (c) 2002-2003 Openwave Systems Inc. All rights reserved.
//  
// The copyright to the computer software herein is the property of
// Openwave Systems Inc. The software may be used and/or copied only
// with the written permission of Openwave Systems Inc. or in accordance
// with the terms and conditions stipulated in the agreement/contract
// under which the software has been supplied.
//









function grayOut(field1, field2)
{
   field1.value = "";
   field1.readOnly = true;

   field2.value = "";
   field2.readOnly = false;
}

function doReset(form)
{
   form.reset();
   //form.cwmdn.readOnly = false;
   //form.replyto.readOnly = true;
}

