/*
----------- FundSys.net(TM) Copyright SySys(R) Corp 2002 ------------
====================================================================
  Created By: BH
  Last Edited By: BH
  Inception Date: 1/1/2002
  Last Edited Date: 1/1/2002
  Description:  Browser interface methods and access (mostly IE only functionality)
  Function Location List: None
  File Dependencies: None
===================================================================''*/

/*'''---------------------------------
'' clipboardCopy(value)
--------------------------------------
   Created By: SySys:bh
   Compatibility: IE6
   Description: copies the give value to the windows clipboard
   Parameters
     value: value to copy to windows clipboard
----------------------------------'''*/   
function clipboardCopy(value){
  window.clipboardData.setData('Text', value);
}  