// Choose Outline
// Sets the outline style for the boatname
function chooseOutline(index)
{
	type = 1
	outlinesize = index;
	if ( index >= 4 )
	{
		outlinesize = index - 3;
		type = 3
	}
		
	opener.document.createName.OutlineSize.value=outlinesize;
	opener.document.createName.effectStyle[type].checked=true;
	opener.document.createName.EffectStyle.value=opener.document.createName.effectStyle[type].value;
	window.close();
}
//**********************************************************************