function TrimText(field, max_count)
{
	if (field.value.length > max_count)
		field.value = field.value.substring(0, max_count);
}

function OpenWin(URL,width,height,nom)

{

	window.open(URL,nom,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=no");

}



function OpenWin2(URL,width,height,nom)

{

	window.open(URL,nom,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=yes");

}



