var UtilInternal = Class.create({

	openDropDowns: new Array(),
	
	timeOuts: new Array(),
	
	initialize: function() {

	},
	
	/**
  	 * cancels the close timeout
  	 */
	selectAllText: function (textArea) {
		$(textArea).focus();
		$(textArea).select();
	},
	
	copyToClipboard: function (textArea) {
		
		if (document.all) {
			// IE only
			Copied = $(textArea).createTextRange();
			Copied.execCommand("Copy");
		}
		else{
			this.selectAllText(textArea);
			return;
		}
	}	
	
});

var JSUtils = new UtilInternal();