function TagHelper(line1,line2,line3,line4,line5,line6,line7,back1,back2,tagname,tagimage,tagwidth,tagheight)
{
    helperwindow=window.open("","HelpWindow",config='height=480,width=520,resizable=yes,scrollbars=yes');

    var shovecount = 0;
    var backcount = false;

    var HWContent = "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n\n<html>\n\n<head>\n<title>Pet Tag Helper</title>\n";
    var HWContent = HWContent + "<link rel=\"stylesheet\" type=\"text/css\" href=\"taghelper.css\">\n<script src=\"economy_taghelper.js\" type=\"text/javascript\"></script>\n"
    var HWContent = HWContent + "</head>\n\n<body>\n\n";

    var HWContent = HWContent + "<div style=\"float:right;\">\n  <img src='\images/tags/" + tagimage + "' width='" + tagwidth + "' height='" + tagheight + "' alt='" + tagname + "'>\n</div>\n\n\n";


    var HWContent = HWContent + "<h1>" + tagname + "</h1>\n\n";

    var HWContent = HWContent + "<h3>Lay out your tag below</h3>\n\n<p><b>Optional:</b>  You can use this form to create a layout for your new tag.  If you like the results, please feel free to copy and paste from the form below to the comments field on the order form.</p>";

    var HWContent = HWContent + "<table class=\"colprint\" border=\"1\" cellpadding=\"1\" cellspacing=\"0\" style=\"clear:right;\"><tr><th colspan=\"10\">Printable Characters</th></tr><tr><td>A</td><td>B</td><td>C</td><td>D</td><td>E</td><td>F</td><td>G</td><td>H</td><td>I</td><td>J</td></tr> <tr><td>K</td><td>L</td><td>M</td><td>N</td><td>O</td><td>P</td><td>Q</td><td>R</td><td>S</td><td>T</td></tr><tr><td>U</td><td>V</td><td>W</td><td>X</td><td>Y</td><td>Z</td><td>1</td><td>2</td><td>3</td><td>4</td></tr> <tr><td>5</td><td>6</td><td>7</td><td>8</td><td>9</td><td>0</td><td>(</td><td>)</td><td>-</td><td>&quot;</td></tr><tr><td>\\</td><td>_</td><td>@</td><td>!</td><td>?</td><td>/</td><td>:</td><td>&amp;</td><td>~</td><td>$</td></tr><tr><td>[</td><td>]</td><td>{</td><td>}</td><td colspan=\"6\">and more</td></tr></table>\n";

    var HWContent = HWContent + "<form name='HelpForm'>\n<table>\n";
    if (line1 > 0 ) { var HWContent = HWContent + "  <tr><td>Line 1: (" + line1 + ")</td><td><input type='text' name=\"hwline1\" maxlength=" + line1 + " size=" + line1 + "></td></tr>\n"; shovecount++; }
    if (line2 > 0 ) { var HWContent = HWContent + "  <tr><td>Line 2: (" + line2 + ")</td><td><input type='text' name='hwline2' maxlength=" + line2 + " size=" + line2 + "></td></tr>\n"; shovecount++; }
    if (line3 > 0 ) { var HWContent = HWContent + "  <tr><td>Line 3: (" + line3 + ")</td><td><input type='text' name='hwline3' maxlength=" + line3 + " size=" + line3 + "></td></tr>\n"; shovecount++; }
    if (line4 > 0 ) { var HWContent = HWContent + "  <tr><td>Line 4: (" + line4 + ")</td><td><input type='text' name='hwline4' maxlength=" + line4 + " size=" + line4 + "></td></tr>\n"; shovecount++; }
    if (line5 > 0 ) { var HWContent = HWContent + "  <tr><td>Line 5: (" + line5 + ")</td><td><input type='text' name='hwline5' maxlength=" + line5 + " size=" + line5 + "></td></tr>\n"; shovecount++; }
    if (line6 > 0 ) { var HWContent = HWContent + "  <tr><td>Line 6: (" + line6 + ")</td><td><input type='text' name='hwline6' maxlength=" + line6 + " size=" + line6 + "></td></tr>\n"; shovecount++; }
    if (line7 > 0 ) { var HWContent = HWContent + "  <tr><td>Line 7: (" + line7 + ")</td><td><input type='text' name='hwline7' maxlength=" + line7 + " size=" + line7 + "></td></tr>\n"; shovecount++; }
    var HWContent = HWContent + "</table>\n<hr align=left width=\"25%\">\n";
    if (back1 > 0 ) { var HWContent = HWContent + "  <p><b>Engrave the second side</b> for only $2.00 per tag.</p>\n<table>\n";}
    if (back1 > 0 ) { var HWContent = HWContent + "  <tr><td>Back 1: (" + back2 + ")</td><td><input type='text' name=\"hwback1\" maxlength=" + back1 + " size=" + back1 + "></td></tr>\n"; backcount = true; }
    if (back2 > 0 ) { var HWContent = HWContent + "  <tr><td>Back 2: (" + back2 + ")</td><td><input type='text' name=\"hwback2\" maxlength=" + back2 + " size=" + back2 + "></td></tr>\n"; backcount = true; }
    var HWContent = HWContent + "</table>\n<hr align=left width=\"25%\">\n<div id=\"create\"><span><a href=\"javascript:ShoveTag(" + shovecount + "," + backcount + ")\">Create Your Layout</a></span></div><p>If satisfied, feel free to request your new layout specifically.</p>\n";
    var HWContent = HWContent + "<textarea rows='10' cols='40' name='hwfinished'></textarea>\n\n";
    var HWContent = HWContent + "</form>\n\n</body>";

    helperwindow.document.write(HWContent);



    helperwindow.document.close();


}



function ShoveTag(shoveme, backside)
{
  document.HelpForm.hwfinished.value="Specific Pet Tag\n================\n";
  if (shoveme >= 1) {document.HelpForm.hwfinished.value = document.HelpForm.hwfinished.value + "Line 1:  " + document.HelpForm.hwline1.value + "\n"; }
  if (shoveme >= 2) {document.HelpForm.hwfinished.value = document.HelpForm.hwfinished.value + "Line 2:  " + document.HelpForm.hwline2.value + "\n"; }
  if (shoveme >= 3) {document.HelpForm.hwfinished.value = document.HelpForm.hwfinished.value + "Line 3:  " + document.HelpForm.hwline3.value + "\n"; }
  if (shoveme >= 4) {document.HelpForm.hwfinished.value = document.HelpForm.hwfinished.value + "Line 4:  " + document.HelpForm.hwline4.value + "\n"; }
  if (shoveme >= 5) {document.HelpForm.hwfinished.value = document.HelpForm.hwfinished.value + "Line 5:  " + document.HelpForm.hwline5.value + "\n"; }
  if (shoveme >= 6) {document.HelpForm.hwfinished.value = document.HelpForm.hwfinished.value + "Line 6:  " + document.HelpForm.hwline6.value + "\n"; }
  if (shoveme >= 7) {document.HelpForm.hwfinished.value = document.HelpForm.hwfinished.value + "Line 7:  " + document.HelpForm.hwline7.value + "\n"; }
  if (backside == true)
  {
    document.HelpForm.hwfinished.value = document.HelpForm.hwfinished.value + "Back Side Line 1:  " + document.HelpForm.hwback1.value + "\n";
    document.HelpForm.hwfinished.value = document.HelpForm.hwfinished.value + "Back Side Line 2:  " + document.HelpForm.hwback2.value + "\n";
  }
}









// blanktaghelper.htm
// var HWContent = HWContent + "\n";