// JavaScript Document
// 	Copyright (c) 2005 - 2010 Richard J. Worsfold
//	Celia Franca Foundation Homepage java
//
function ClipBoard()
//  this is Internet explorer only function that has the font and background the same so that it does not show up on other browsers.
{
holdtext.innerText = copytext.innerText;
Copied = holdtext.createTextRange();
Copied.execCommand("Copy");
}

// May 20, 2010 09.53
// Modifications and updates