function get(id) {return document.getElementById(id);}
function link2(url) {window.location = url;}
function imposeMaxLength(Object, MaxLen) 
	{if(Object.value.length > MaxLen)
		Object.value = Object.value.substring(0, MaxLen);}

