<!--
function bold(field) 
{
var dark=prompt('Bold text','Text');
if (dark)
	{
		field.value+=('<b>'+dark+'</b>');
	}
}

function highlight(field) 
{
var dark=prompt('highlight text','Text');
if (dark)
	{
		field.value+=('<h>'+dark+'</h>');
	}
}

function hrrule(field)
{
field.value+=('[hr]')
}

function putemotion(field,emo)
{
	field.value+=(emo);
}

function quote(field) 
{
var quotet=prompt('Quote Text','Text');
if (quotet)
	{
		field.value+=('<Q>'+quotet+'</Q>');
	}
}

function italic(field) 
{
var ital=prompt('Italicized Text','Text');
if (ital)
	{
		field.value+=('<i>'+ital+'</i>');
	}
}

function underlined(field)
{
var underline=prompt('Underlined Text','Text');
if (underline)
	{
		field.value+=('<u>'+underline+'</u>');
	}
}

function link(field) 
{
var hyper=prompt('URL for the link','http://');
var hypertwo=prompt('Text for the link','Text');
if (hyper) 
	{
		field.value+=('<a href="'+hyper+'" target="_blank">'+hypertwo+'</a>');	
	}
}

function ftplink(field) 
{
var hyper=prompt('URL for the link','ftp://');
var hypertwo=prompt('Text for the link','Text');
if (hyper)
	{
		field.value+=('<a href="'+hypertwo+'" target="_blank">'+hyper+'</a>');
	}
}

function securelink(field) 
{
var hyper=prompt('URL for the link','https://');
var hypertwo=prompt('Text for the link','Text');
if (hyper)
	{
		field.value+=('<a href="'+hypertwo+'" target="_blank">'+hyper+'</a>');
	}
}

function emaillink(field) 
{
var emailit=prompt('Your E-Mail Address','nobody@nowhere.com');
var emailitto=prompt('Text for the link','Text');
if (emailit)
	{
		field.value+=('<a href="mailto:'+emailit+'">'+emailitto+'</a>');
	}
}

function image(field) 
{
var img=prompt('URL for the image','');
if (img)
	{
		field.value+=('<IMG>'+img+'</IMG>');
	}
}

function orderedl(field)
{
var newentry=prompt('Text ordered list','Text')
var newentry2=prompt('New list entry','Text')

field.value+=('<ol>'+'<li>'+newentry+'<li>'+newentry2+'</ol>\r\n')
}

function unorderedl(field)
{
field.value+=('<bullet></bullet>')
}

function newlistentry(field)
{
var newentry=prompt('Text for new entry','Text')
if (newentry)
	{
		field.value+=('<li>'+newentry+'</li>\r\n')
	}
}

function head(field) 
{
var head=prompt('Heading1','Text');
if (head)
	{
		field.value+=('<font class="heading"><b>'+head+'</b></font>');
	}
}

function head2(field) 
{
var head=prompt('Heading2','Text');
if (head)
	{
		field.value+=('<h4>'+head+'</h4>');
	}
}

function smile(smile, field) 
{
 	field.value+=(' '+smile+' ');
}
-->
