/* 
Javascript functions common to all iCopyright services
Copyright 2005-2006 Data Depth Corp. All rights reserved.
*/

// Limit the characters in a window
function limitTextarea(field,count,max) {
	if(field.value.length > max) {
		field.value = field.value.substring(0, max);
	} else {
		count.value = max - field.value.length;
	}
}

// Submits a command to a command form
function command(cmd,id)
{
	document.commandform.cmd.value = cmd;
	document.commandform.id.value = id;
	document.commandform.submit();
}

// A version of the above with three args
function commandthree(cmd,id,xinfo)
{
	document.commandform.cmd.value = cmd;
	document.commandform.id.value = id;
	document.commandform.xinfo.value = xinfo;
	document.commandform.submit();
}

