")
}
}
function CENTER()
{
document.xx.x.value += ("
\n")
}
function UNCENTER()
{
document.xx.x.value += ("\n")
}
function P()
{
var P = window.prompt("Type in your text for the paragraph:","")
if(P =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + P + "
\n")
}
}
function CENTERP()
{
var CENTERP = window.prompt("Type in your text for the paragraph:","")
if(CENTERP =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + CENTERP + "
\n")
}
}
function RIGHTP()
{
var RIGHTP = window.prompt("Type in your text for the Paragraph:","")
if(RIGHTP =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + RIGHTP + "
\n")
}
}
function BR()
{
document.xx.x.value += ("
\n")
}
function HR()
{
document.xx.x.value += ("
\n")
}
function B()
{
var B = window.prompt("Type in your Bold here:","")
if(B =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + B + "\n")
}
}
function I()
{
var I = window.prompt("Type in your Italics here:","")
if(I =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + I + "\n")
}
}
function U()
{
var U = window.prompt("Type in your Underlined here:","")
if(U =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + U + "\n")
}
}
function H1()
{
var H1 = window.prompt("Heading 1:","")
if(H1 =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + H1 + "
\n")
}
}
function H2()
{
var H2 = window.prompt("Heading 2:","")
if(H2 =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + H2 + "
\n")
}
}
function H3()
{
var H3 = window.prompt("Heading 3:","")
if(H3 =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + H3 + "
\n")
}
}
function H4()
{
var H4 = window.prompt("Heading 4:","")
if(H4 =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + H4 + "
\n")
}
}
function H5()
{
var H5 = window.prompt("Heading 5:","")
if(H5 =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + H5 + "
\n")
}
}
function H6()
{
var H6 = window.prompt("Heading 6:","")
if(H6 =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + H6 + "
\n")
}
}
function IMG()
{
var IMG = window.prompt("The addy for the image:","")
if(IMG =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("
\n")
}
}
function IMGRIGHT()
{
var IMGRIGHT = window.prompt("The addy for the image to be aligned right:","")
if(IMGRIGHT =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("
\n")
}
}
function IMGCENTER()
{
var IMGCENTER = window.prompt("The addy for the image to be Centered:","")
if(IMGCENTER =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("
\n")
}
}
function BLOCKQUOTE()
{
var BLOCKQUOTE = window.prompt("Enter the text for the Blockquote:","")
if(BLOCKQUOTE =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + BLOCKQUOTE + "
\n")
}
}
function LINK()
{
var PLACE = window.prompt("Enter the links Location:","")
var LINK = window.prompt("Enter the links Name:","")
var TARGET = window.prompt("enter its target or if none leave _top in place\nThat brings upa new browser window","_top")
if(PLACE =='')
{
NOTEXT()
}
if(LINK =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + LINK + "\n")
}
}
function EMAIL()
{
var EMAIL = window.prompt("Enter your e-mail address:","")
var NAME = window.prompt("Enter the text for the address:","")
if(NAME =='')
{
NOTEXT()
}
if(EMAIL =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + NAME + "\n")
}
}
function TABLE1()
{
var TABLEBORDER = window.prompt("What size do you want your border to be?","")
var TABLEBG = window.prompt("What do you want the Table color to be?","000000")
var TABLECELLSP = window.prompt("What is the cellspacing \n Or leave this in","0")
var TABLECELLPAD = window.prompt("What is your Cellpadding or leave this number in","0")
if(TABLEBORDER =='')
{
NOTEXT()
}
if(TABLEBG =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("")
}
}
function TABLEEND()
{
document.xx.x.value += ("
\n")
}
function TABLETR()
{
document.xx.x.value += ("\n")
}
function TABLEUNTR()
{
document.xx.x.value += ("
\n")
}
function TABLETD()
{
document.xx.x.value += ("")
}
function TABLEUNTD()
{
document.xx.x.value += (" | \n")
}
function TABLETH()
{
var TABLETH = window.prompt("What is the name for the Table Heading?","")
if(TABLETH =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + TABLETH +" | \n")
}
}
function TABLECOLSPAN()
{
var COLSPAN = window.prompt("How many sections of the table should it go?","")
if(COLSPAN =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("\n")
}
}
function TABLEROWSPAN()
{
var ROWSPAN = window.prompt("How many sections down on the table should it go?","")
if(ROWSPAN =='')
{
NOTEXT()
}
else
{
document.xx.x.value += (" | \n")
}
}
function TABLECELLSPACING()
{
var CELLSPACING = window.prompt("Enter the number for the Cell Spacing:","")
if(CELLSPACING =='')
{
NOTEXT()
}
else
{
document.xx.x.value += (" | \n")
}
}
function TABLECELLPADDING()
{
var CELLPADDING = window.prompt("Insert the number for the Cell Padding:","")
if(CELLPADDING =='')
{
NOTEXT()
}
else
{
document.xx.x.value += (" | \n")
}
}
function FONT()
{
var FONT = window.prompt("What would you like to put in the font tag?","")
if(FONT =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + FONT + "\n")
}
}
function FONTCOLOR()
{
var COLOR = window.prompt("What color should the text be?","")
if(COLOR =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("\n")
}
}
function FONTSIZE()
{
var SIZE = window.prompt("How big of text?","")
if(SIZE =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("\n")
}
}
function UNFONT()
{
document.xx.x.value += ("\n")
}
function UL()
{
document.xx.x.value += ("\n")
}
function UNUL()
{
document.xx.x.value += (" \n")
}
function OL()
{
document.xx.x.value += ("\n")
}
function UNOL()
{
document.xx.x.value += (" \n")
}
function LI()
{
var LI = window.prompt("What is the text for this list?","")
if(LI =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("" + LI + "\n")
}
}
function FORMON()
{
var FORMNAME = window.prompt("What do you want the Form name to be?","")
var FORMACTION = window.prompt("What do you want the FORM action to be?","")
var FORMTARGET = window.prompt("What is the target for the form?\nLeave the _top if there is none","_top")
var FORMMETHOD = window.prompt("What method either get or post?","")
if(FORMNAME =='')
{
NOTEXT()
}
if(FORMACTION =='')
{
NOTEXT()
}
else
{
document.xx.x.value += ("\n")
}
function TEXTAREA()
{
var TEXTAREANAME = window.prompt("What is the name for the Textarea?\n Don't use the same name as your form","")
var COLS = window.prompt("How many COLUMNS for the Textarea?","50")
var ROWS = window.prompt("How many ROWS for the Textarea?","10")
var TEXTAREAVALUE = window.prompt("What do you want the textarea to say?","")
if(TEXTAREANAME =='')
{
NOTEXT()
}
if(COLS =='')
{
NOTEXT()
}
if(ROWS =='')
{
NOTEXT()
}
else
{
document.xx.x.value += (" |
Blah! Reload you know the drill!..lol
|