//Common Functions Library
//© 2008 Scott Drake

function copyPrep(copyFromNode)
{
	copyFromNode.focus();
	copyFromNode.select();
}

//Extend String with chomp
//example usage: text = text.chomp();
String.prototype.chomp = function ()
{
  return this.replace(/(\n|\r)+$/, '');
};
