Welcome to The Forum

Register now to gain access to all of our features. Once registered and logged in, you will be able to create topics, post replies to existing threads

Someone Help Me Download This As A Pdf


Killuminati
 Share

Recommended Posts

A friend of mine asked to find a manual for her car. I found it but it opens the pdf inside a flash box. I see no way of downloading it as a pdf itself. I can download the .swf but extracting it just reveals pictures and no text. Anyone know of a way to download it as a pdf?

 

http://www.manualsfo...anual-1993.html

Edited by Killuminati
Link to comment
Share on other sites

Try decompiling the SWF object itself. It looks like it's not protected so I don't see an issue doing it.

 

Based off the code

//---------------------------------------------------------------------- //Symbol 309 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2578 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00110A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 578 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 521 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5495 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393OINTROD.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 282 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00148A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 470 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2058 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00030A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5711 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00019A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1105 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00019A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 6291 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Frame 1 //---------------------------------------------------------------------- et_total_pages.text = viewport._totalframes; swfwidth = viewport._width; swfheight = viewport._height; Dragging = ""; stage.scalemode = "noScale"; stage.align = "LT"; fullwidth = stage.width; fullheight = stage.height; contentwidth = fullwidth - 40; contentheight = fullheight - 70; vscrollbar._x = fullwidth - 22; hscrollbar._y = fullheight - 22; p1._x = ((fullwidth - 25) - 20) - (p1._width / 2); o1._x = ((fullwidth - 50) - 20) - (o1._width / 2); z1._x = ((fullwidth - 75) - 20) - (z1._width / 2); m1._x = ((fullwidth - 100) - 20) - (m1._width / 2); l1._x = ((fullwidth / 2) - 100) - (l1._width / 2); r1._x = ((fullwidth / 2) + 100) - (r1._width / 2); et._x = (fullwidth / 2) - (((et._width + etmiddle._width) + et_total_pages._width) / 2); etmiddle._x = ((fullwidth / 2) - (((et._width + etmiddle._width) + et_total_pages._width) / 2)) + et._width; et_total_pages._x = (((fullwidth / 2) - (((et._width + etmiddle._width) + et_total_pages._width) / 2)) + et._width) + etmiddle._width; background.linestyle(1, 0, 96); background.moveto(10, fullheight - 20); background.lineto(10, fullheight - 10); background.lineto((10 + fullwidth) - 40, fullheight - 10); background.lineto((10 + fullwidth) - 40, fullheight - 20); background.lineto(10, fullheight - 20); background.moveto(fullwidth - 20, 40); background.lineto(fullwidth - 20, fullheight - 30); background.lineto(fullwidth - 10, fullheight - 30); background.lineto(fullwidth - 10, 40); background.lineto(fullwidth - 20, 40); background.linestyle(1, 0); background.startFill(0); background.moveto(9, 39); background.lineto((fullwidth - 30) + 1, 39); background.lineto((fullwidth - 30) + 1, fullheight - 29); background.lineto(9, fullheight - 29); background.lineto(9, 39); background.endfill(); areabutton._xscale = contentwidth; areabutton._yscale = contentheight; cliparea._xscale = contentwidth; cliparea._yscale = contentheight; viewport.setmask(cliparea); lastzoom = 1; zoom = 1; setPageNr = function () { current_pagenumber = pagenr; viewport.gotoandstop(pagenr); }; setNoScrollZoomLevel = function () { xscale = contentwidth / swfwidth; yscale = contentheight / swfheight; if (xscale >= yscale) { zoom = yscale; setZoomLevel(); } else { zoom = xscale; setZoomLevel(); } }; setOneDirScrollZoomLevel = function () { xscale = contentwidth / swfwidth; yscale = contentheight / swfheight; if (yscale >= xscale) { zoom = yscale; setZoomLevel(); } else { zoom = xscale; setZoomLevel(); } }; set11ZoomLevel = function () { zoom = 1; setZoomLevel(); }; swfpos2scrollbars = function () { if (!scrollxrange) { hscrollbar._x = 10; } else { hscrollbar._x = 10 + (((left - viewport._x) * scrollbarxrange) / scrollxrange); } if (!scrollyrange) { vscrollbar._y = 40; } else { vscrollbar._y = 40 + (((top - viewport._y) * scrollbaryrange) / scrollyrange); } }; setZoomLevel = function () { width = contentwidth; height = contentheight; left = 10; top = 40; if ((swfwidth * zoom) < contentwidth) { width = swfwidth * zoom; left = 10 + ((contentwidth - width) / 2); } if ((swfheight * zoom) < contentheight) { height = swfheight * zoom; top = 40 + ((contentheight - height) / 2); } scrollxrange = (swfwidth * zoom) - width; scrollyrange = (swfheight * zoom) - height; hscrollbar._xscale = (contentwidth * width) / (swfwidth * zoom); vscrollbar._yscale = (contentheight * height) / (swfheight * zoom); scrollbarxrange = contentwidth - hscrollbar._xscale; scrollbaryrange = contentheight - vscrollbar._yscale; if (scrollbarxrange < 0) { scrollbarxrange = 0; } if (scrollbaryrange < 0) { scrollbaryrange = 0; } viewport._xscale = zoom * 100; viewport._yscale = zoom * 100; focusx = (contentwidth / 2) - (viewport._x - 10); focusy = (contentheight / 2) - (viewport._y - 40); viewport._x = (left - ((focusx * zoom) / lastzoom)) + (width / 2); viewport._y = (top - ((focusy * zoom) / lastzoom)) + (height / 2); if (left >= viewport._x) { if (viewport._x < (left - scrollxrange)) { viewport._x = left - scrollxrange; } } else { viewport._x = left; } if (top >= viewport._y) { if (viewport._y < (top - scrollyrange)) { viewport._y = top - scrollyrange; } } else { viewport._y = top; } swfpos2scrollbars(); if (!scrollxrange) { } else { hscrollbar._visible = 1; } if (!scrollyrange) { } else { vscrollbar._visible = 1; } lastzoom = zoom; vscrollbar.t1._y = vscrollbar.t2._y - (600 / vscrollbar._yscale); vscrollbar.t3._y = vscrollbar.t2._y + (600 / vscrollbar._yscale); hscrollbar.th1._x = hscrollbar.th2._x - (600 / hscrollbar._xscale); hscrollbar.th3._x = hscrollbar.th2._x + (700 / hscrollbar._xscale); vscrollbar.vshadow._x = vscrollbar.vbox._x + (500 / vscrollbar._xscale); vscrollbar.vshadow._y = vscrollbar.vbox._y + (500 / vscrollbar._yscale); hscrollbar.hshadow._x = hscrollbar.hbox._x + (500 / hscrollbar._xscale); hscrollbar.hshadow._y = hscrollbar.hbox._y + (500 / hscrollbar._yscale); }; pagenr = 1; setPageNr(); if (zoomtype != "1") { if (zoomtype != "2") { setOneDirScrollZoomLevel(); } else { setNoScrollZoomLevel(); } } else { set11ZoomLevel(); } et.onchanged = function () { if (viewport._totalframes >= current_pagenumber) { if (0 < current_pagenumber) { pagenr = int(current_pagenumber); setPageNr(); } } }; l1.onrelease = function () { if (1 < pagenr) { pagenr = pagenr - 1; setPageNr(); } }; r1.onrelease = function () { if (pagenr < viewport._totalframes) { pagenr = pagenr + 1; setPageNr(); } }; p1.onrelease = function () { if (zoom < 4) { zoom = zoom + 1; setZoomLevel(); } }; m1.onrelease = function () { if (1 < zoom) { zoom = zoom - 1; if (zoom < 1) { zoom = 1; } setZoomLevel(); } }; o1.onrelease = function () { setNoScrollZoomLevel(); }; z1.onrelease = function () { setOneDirScrollZoomLevel(); }; refreshDrag = function () { if (Dragging != "h") { if (Dragging != "v") { if (Dragging == "xy") { swfpos2scrollbars(); } } else { viewport._y = top + (((40 - vscrollbar._y) * scrollyrange) / scrollbaryrange); } } else { viewport._x = left + (((10 - hscrollbar._x) * scrollxrange) / scrollbarxrange); } }; dragrefresh = setinterval(refreshDrag, 20);  //---------------------------------------------------------------------- //Symbol 2493 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00019A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 216 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00030A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 736 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1099 Button //---------------------------------------------------------------------- on (release) { gotoandstop (14); }  //---------------------------------------------------------------------- //Symbol 7635 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00148A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5675 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00133A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 916 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00003A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 255 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00027A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 485 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00148A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 593 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00006A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 38 Button //---------------------------------------------------------------------- on () { }  //---------------------------------------------------------------------- //Symbol 153 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00141A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 8100 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393OZONINF.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 539 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 533 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00064A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2210 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1820 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00003A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5189 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00102A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1478 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00010A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 3877 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00072A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 68 Button //---------------------------------------------------------------------- on (press) { viewport.startdrag(false, left - scrollxrange, top - scrollyrange, left, top); Dragging = "xy"; } on (release, dragOut, releaseOutside) { viewport.stopdrag(); Dragging = ""; }  //---------------------------------------------------------------------- //Symbol 2276 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 3009 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00054A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5632 Button //---------------------------------------------------------------------- on (release) { gotoandstop (116); }  //---------------------------------------------------------------------- //Symbol 1102 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00027A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 186 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00141A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 524 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5489 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 590 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 527 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00006A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 7560 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 357 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393OINTROD.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 360 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 7600 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00158A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 482 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 6577 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00133A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 4640 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00080A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 264 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00030A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 4269 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00080A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 497 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2279 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 739 Button //---------------------------------------------------------------------- on (release) { geturl ("AC939300INDXA.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2341 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00010A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 566 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 530 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 649 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 726 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00110A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 6965 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00133A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 279 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00148A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1276 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00019A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2213 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 165 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00158A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 7236 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00141A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 3060 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 584 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00019A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 37 Button //---------------------------------------------------------------------- on () { }  //---------------------------------------------------------------------- //Symbol 658 Button //---------------------------------------------------------------------- on (release) { gotoandstop (2); }  //---------------------------------------------------------------------- //Symbol 225 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00030A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 40 Button //---------------------------------------------------------------------- on () { }  //---------------------------------------------------------------------- //Symbol 370 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 204 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1111 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00019A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 3774 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00064A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 315 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00054A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 270 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00054A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 646 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 41 Button //---------------------------------------------------------------------- on () { }  //---------------------------------------------------------------------- //Symbol 138 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 545 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 234 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00027A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 464 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00003A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 373 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00010A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 258 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5638 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00102A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 655 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 219 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00141A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 8027 Button //---------------------------------------------------------------------- on (release) { geturl ("AC939300INDXA.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 336 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00064A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 587 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00027A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 168 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00133A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 494 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1823 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00030A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1412 Button //---------------------------------------------------------------------- on (release) { gotoandstop (15); }  //---------------------------------------------------------------------- //Symbol 1860 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00030A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2388 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 240 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00027A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 667 Button //---------------------------------------------------------------------- on (release) { geturl ("AC939300INDXB.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2832 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00044A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 144 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2286 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 661 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393OGASSTA.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 62 Button //---------------------------------------------------------------------- on (press) { startdrag(false, 10, _parent.fullheight - 22, 10 + _parent.scrollbarxrange, _parent.fullheight - 22); _parent.Dragging = "h"; } on (release, dragOut, releaseOutside) { stopdrag(); _parent.refreshDrag(); _parent.Dragging = ""; }  //---------------------------------------------------------------------- //Symbol 324 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1415 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00019A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2496 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00019A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 7830 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00110A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 572 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 201 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00133A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 198 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00088A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 479 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00054A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 7563 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 536 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5399 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1897 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00027A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 612 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 147 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00054A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 6616 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 243 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00102A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2542 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00044A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 183 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00034A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2282 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 473 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00034A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 7665 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 784 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393OINTROD.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1662 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00006A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 515 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00034A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 354 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 730 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00148A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 306 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 150 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 207 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 36 Button //---------------------------------------------------------------------- on () { }  //---------------------------------------------------------------------- //Symbol 597 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00133A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 348 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00044A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 8151 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393OWNERID.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 288 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 512 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 249 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 4958 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 6239 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 297 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1155 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00027A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1052 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00010A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 333 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00034A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 601 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00034A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 503 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 871 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00006A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 551 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 581 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00010A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 652 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1095 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00019A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 345 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 560 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 192 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 177 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00141A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 575 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 363 Button //---------------------------------------------------------------------- on (release) { geturl ("AC939300INDXB.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 4771 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00088A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 4583 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00088A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 609 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1108 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00019A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 3921 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00069A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 8148 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00003A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 476 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00148A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2273 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 3508 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00064A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 237 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00030A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 461 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00158A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 6053 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00110A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 39 Button //---------------------------------------------------------------------- on () { }  //---------------------------------------------------------------------- //Symbol 342 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 4735 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 366 Button //---------------------------------------------------------------------- on (release) { gotoandstop (1); }  //---------------------------------------------------------------------- //Symbol 318 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00141A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5402 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2581 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 52 Button //---------------------------------------------------------------------- on (press) { startdrag(false, _parent.fullwidth - 22, 40, _parent.fullwidth - 22, 40 + _parent.scrollbaryrange); _parent.Dragging = "v"; } on (release, dragOut, releaseOutside) { stopdrag(); _parent.refreshDrag(); _parent.Dragging = ""; }  //---------------------------------------------------------------------- //Symbol 228 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00072A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5629 Button //---------------------------------------------------------------------- on (release) { gotoandstop (114); }  //---------------------------------------------------------------------- //Symbol 261 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00030A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1857 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00030A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1665 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00006A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5492 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00110A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5787 Button //---------------------------------------------------------------------- on (release) { gotoandstop (113); }  //---------------------------------------------------------------------- //Symbol 321 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 630 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00034A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 3259 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00059A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2776 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 171 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00141A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 7668 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 621 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00141A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 3300 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00054A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 642 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00148A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 467 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00003A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 174 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00072A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 303 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 6916 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00141A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 246 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00027A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 273 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1732 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00027A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 231 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00030A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 733 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00158A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 554 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00054A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 3006 Button //---------------------------------------------------------------------- on (release) { gotoandstop (53); }  //---------------------------------------------------------------------- //Symbol 742 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393OGASSTA.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 7195 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00148A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1203 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 189 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 3553 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00059A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 4305 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00076A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5714 Button //---------------------------------------------------------------------- on (release) { gotoandstop (115); }  //---------------------------------------------------------------------- //Symbol 156 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00064A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 569 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 141 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 618 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 300 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00010A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 4119 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00072A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 162 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 159 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00133A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 720 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393OINTROD.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 7719 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00158A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 135 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 3738 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00069A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 6288 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00110A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 213 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00027A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2216 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 518 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 488 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00148A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 636 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00148A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 180 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00158A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 285 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00034A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2447 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 458 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00003A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5242 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 351 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1114 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00006A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 664 Button //---------------------------------------------------------------------- on (release) { geturl ("AC939300INDXB.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5871 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00110A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5817 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 548 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 563 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00003A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 500 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 252 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00102A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1894 Button //---------------------------------------------------------------------- on (release) { gotoandstop (33); }  //---------------------------------------------------------------------- //Symbol 557 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00141A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2499 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 339 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00125A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 509 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 606 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00006A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 294 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00158A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 542 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00158A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 745 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393OWNERID.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 633 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 7929 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00148A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1771 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00019A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 7926 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 312 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2010 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00034A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 455 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00133A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2055 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 330 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00044A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 210 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00003A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 491 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00148A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 624 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 627 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 506 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00116A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5590 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00110A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 4076 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00076A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 327 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 291 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00064A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 7833 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00110A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 6703 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00158A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 5635 Button //---------------------------------------------------------------------- on (release) { gotoandstop (113); }  //---------------------------------------------------------------------- //Symbol 222 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00054A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 639 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 1158 Button //---------------------------------------------------------------------- on (release) { gotoandstop (19); }  //---------------------------------------------------------------------- //Symbol 276 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00038A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 267 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00054A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 195 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00160A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 615 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00049A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 2289 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00034A.pdf", "_this"); }  //---------------------------------------------------------------------- //Symbol 723 Button //---------------------------------------------------------------------- on (release) { geturl ("AC9393O00092A.pdf", "_this");

Edited by enigma#
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share