function PopUp(pageURL,windowname,features) {
		window.open(pageURL,windowname,features);
	}
function CheckAllBoxes() {
		temp = document.checkform.elements.length;
		for (i=0; i < temp; i++)
			{
			document.checkform.elements[i].checked=1;
			}
		}
function UnCheckAllBoxes() {
		temp = document.checkform.elements.length;
		for (i=0; i < temp; i++)
			{
			document.checkform.elements[i].checked=0;
			}
		}
function ToggleItem(myItem) {
	if (myItem.style.visibility != 'hidden') {
		HideItem(myItem);
		}
	else
		{
		ShowItem(myItem);
		}
	return false;
		}
function ShowItem(myItem) {
	myItem.style.visibility = 'visible';
	myItem.style.display = '';
		}
function HideItem(myItem) {
	myItem.style.visibility = 'hidden';
	myItem.style.display = 'none';
		}
function ClipBoard() {
	Copied = holdtext.createTextRange();
	Copied.execCommand("Copy");
	alert('The email addresses have been copied to your clipboard successfully.');
	}