
function borderstyle(selectname)
{
	document.write('<select name="'+selectname+'" id="'+selectname+'">');
	document.write('<option value=" Solid">DEFAULT</option>');
	document.write('<option value="Dashed">Dashed</option>');
	document.write('<option value="Dotted">Dotted</option>');
	document.write('<option value="Double">Double</option>');
	document.write('<option value="Groove">Groove</option>');
	document.write('<option value="Inset">Inset</option>');
	document.write('<option value="Outset">Outset</option>');
	document.write('<option value="Ridge">Ridge</option>');
	document.write('<option value="Solid">Solid</option>');
	document.write('</select>');
}

function textdecor(selectname,check)
{
	document.write('<br /><input type="checkbox" name="'+selectname+'fontBold" id="'+selectname+'fontBold" value="Bold" ');
	if (check=="yes") document.write('checked="checked"');
	document.write(' /><span style="font-weight: Bold;">Bold</span>');
	document.write('<br /><input type="checkbox" name="'+selectname+'fontItalic" id="'+selectname+'fontItalic" value="Italic"><span style="font-style: Italic;">Italic</span>');
	document.write('<br /><input type="checkbox" name="'+selectname+'fontUnderline" id="'+selectname+'fontUnderline" value="Underline"><span style="text-decoration: underline;">Underline</span>');
	document.write('<br /><input type="checkbox" name="'+selectname+'fontStrikethrough" id="'+selectname+'fontLinethrough" value="Line-through"><span style="text-decoration: Line-through;">Line through</span>');
	document.write('<br /><input type="checkbox" name="'+selectname+'fontOverline" id="'+selectname+'fontOverline" value="Overline"><span style="text-decoration: Overline;">Overline</span>');
	document.write('<br /><input type="checkbox" name="'+selectname+'fontSmallcaps" id="'+selectname+'fontSmallcaps" value="small-caps"><span style="font-variant: Small-caps;">Small-caps</span>');
	document.write('<br /><input type="checkbox" name="'+selectname+'fontBlink" id="'+selectname+'fontBlink" value="Blink"><span style="text-decoration: Blink;">Blink</span>');
}
