function textCounter(field, countfield, maxlimit, limit) 
{
	if (field.value.length > maxlimit)
	{
		if( limit == 1 )
		{
			field.value = field.value.substring(0, maxlimit);
		}
	}	
	
	countfield.value = maxlimit - field.value.length;	
}
function openContact(html)
{
	window.open(html+'.html' ,'toimipiste','width=440, height=550,history=no,resizable=no,status=no,scrollbars=no,menubar=no');
}

function openContact2(html)
{
	window.open(html+'.html' ,'toimipiste','width=440, height=350,history=no,resizable=no,status=no,scrollbars=no,menubar=no');
}