//Link Description script- © Dynamic Drive (www.dynamicdrive.com)
//For full source code and TOS, visit http://www.dynamicdrive.com

//change link descriptions to your own. Extend as needed
var linktext=new Array()
linktext[0]="SCHEDULE REQUESTED:  Specify the date the job will be ready and date it needs to be done. Also request standard turnaround time for your job"
linktext[1]="FINISHED SIZE:  Specify the finished size when completed. Example: (8 3/4 x 10 7/8)"
linktext[2]="QUANTITY:  Specify the quantity needed.  If several quantities are needed for quoting, separate with commas, 5000, 10000"
linktext[3]="NUMBER OF PAGES:  Specify Text + Cover (80 pgs + cover = 84 pgs) or Self-cover (80 pgs, self-cover = 80 pgs) 2 pgs (back to back printed)=1 Leaf"
linktext[4]="COVER STOCK:  Specify coated or uncoated, weight in point pt or pounds lb, color"
linktext[5]="TEXT STOCK:  Specify coated or uncoated, weight in pounds lb or point pt, color"
linktext[6]="COVER INK:  Specify # of ink color(s): e.g., 4-color process over Black (4/1) 2 PMS over 1 PMS (2/1)"
linktext[7]="TEXT INK:  Specify # of ink color(s): e.g., 4-color process over Black (4/1) 2 PMS over 1 PMS (2/1)"
linktext[8]="COVER COATING:  Usually needed with (coated paper) varnish, UV coating, film lamination, lay-flat-film lamination, aqueous coating"
linktext[9]="BLEEDS:  Ink printed to very edge of paper. Specify how many sides of paper bleed (if 3 or 4 sides bleed = full bleed"
linktext[10]="BINDING:  Specify Saddle Stitch (Stapled), Perfect Bound (Glued) or Loose Bound"
linktext[11]="DIE CUTTING:  Specify if a (die) is needed or if it will be provided. Examples: business card cuts, specialized graphic design cuts"
linktext[12]="EMBOSSING/DEBOSSING:  Embossing=pressing an image into paper so it lies above the surface / debossing=image lies below surface"
linktext[13]="HOLE PUNCH:  Specify if any (holes) need to be drilled and their positions. Examples: drill-1, drill-3"
linktext[14]="PACKAGING:  Specify any individual or multiple shrinkwrapping; bulk in standard cartons; skid-packed; cartoned and skid-packed"

var ns6=document.getElementById&&!document.all
var ie=document.all

function show_text(thetext, whichdiv){
if (ie) eval("document.all."+whichdiv).innerHTML=linktext[thetext]
else if (ns6) document.getElementById(whichdiv).innerHTML=linktext[thetext]
}

function resetit(whichdiv){
if (ie) eval("document.all."+whichdiv).innerHTML='&nbsp;'
else if (ns6) document.getElementById(whichdiv).innerHTML='&nbsp;'
}


