472,789 Members | 1,330 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,789 software developers and data experts.

Dreamweaver Hotspots don't work in IE (Explorer) but do work in Firefox

Background:
I have copy and pasted an Excel flowchart into a Dreamweaver html page. I created a frame on the top of the page as a viewer. I created hotspot links over the flowchart items. Each hotspot link should open a new anchor link in the top frame which references a different webpage.

Problem:
It works fine in Firefox. When clicking on the hotspots I get the appropriate html page anchor link to reference my html page and it correctly targets into the top frame.

In Explorer, clicking on the hotspots gives me a target landing in the mainframe at the bottom rather than in the topframe.

Note:
The page is new and I only have links for the top-left two flow chart items and one of the arrow connectors between "Access to resources" and "effective planning".

Website: http://www.elearninglink.com/team2map/

Frameset Code for Index:
Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Untitled Document</title>
  6. </head>
  7.  
  8. <frameset rows="162,*" cols="*" framespacing="3" frameborder="yes" border="3" bordercolor="#000000">
  9.   <frame src="UntitledFrame-6.html" name="topFrame" frameborder="yes" scrolling="yes" bordercolor="#000000" id="topFrame" title="topFrame" />
  10.   <frame src="map.htm" name="mainFrame" scrolling="no" id="mainFrame" title="mainFrame" />
  11. </frameset>
  12. <noframes><body>
  13. </body>
  14. </noframes></html>
mainframe Code:
Expand|Select|Wrap|Line Numbers
  1. <html xmlns:v="urn:schemas-microsoft-com:vml"
  2. xmlns:o="urn:schemas-microsoft-com:office:office"
  3. xmlns:x="urn:schemas-microsoft-com:office:excel"
  4. xmlns="http://www.w3.org/TR/REC-html40">
  5.  
  6. <head>
  7. <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
  8. <meta name=ProgId content=Excel.Sheet>
  9. <meta name=Generator content="Microsoft Excel 11">
  10. <link rel=File-List href="map_files/filelist.xml">
  11. <link rel=Edit-Time-Data href="map_files/editdata.mso">
  12. <link rel=OLE-Object-Data href="map_files/oledata.mso">
  13. <!--[if !mso]>
  14. <style>
  15. v\:* {behavior:url(#default#VML);}
  16. o\:* {behavior:url(#default#VML);}
  17. x\:* {behavior:url(#default#VML);}
  18. .shape {behavior:url(#default#VML);}
  19. </style>
  20. <![endif]--><!--[if gte mso 9]><xml>
  21.  <o:DocumentProperties>
  22.   <o:LastAuthor>javi</o:LastAuthor>
  23.   <o:Created>1996-10-14T23:33:28Z</o:Created>
  24.   <o:LastSaved>2008-07-30T21:50:28Z</o:LastSaved>
  25.   <o:Version>11.9999</o:Version>
  26.  </o:DocumentProperties>
  27. </xml><![endif]-->
  28. <style>
  29. <!--table
  30.     {mso-displayed-decimal-separator:"\.";
  31.     mso-displayed-thousand-separator:"\,";}
  32. @page
  33.     {margin:1.0in .75in 1.0in .75in;
  34.     mso-header-margin:.5in;
  35.     mso-footer-margin:.5in;}
  36. .font0
  37.     {color:windowtext;
  38.     font-size:10.0pt;
  39.     font-weight:400;
  40.     font-style:normal;
  41.     text-decoration:none;
  42.     font-family:Arial;
  43.     mso-generic-font-family:auto;
  44.     mso-font-charset:0;}
  45. .font5
  46.     {color:black;
  47.     font-size:6.0pt;
  48.     font-weight:400;
  49.     font-style:normal;
  50.     text-decoration:none;
  51.     font-family:Arial, sans-serif;
  52.     mso-font-charset:0;}
  53. .font6
  54.     {color:#969696;
  55.     font-size:6.0pt;
  56.     font-weight:400;
  57.     font-style:normal;
  58.     text-decoration:none;
  59.     font-family:Arial, sans-serif;
  60.     mso-font-charset:0;}
  61. .font7
  62.     {color:windowtext;
  63.     font-size:8.0pt;
  64.     font-weight:400;
  65.     font-style:normal;
  66.     text-decoration:none;
  67.     font-family:Arial, sans-serif;
  68.     mso-font-charset:0;}
  69. tr
  70.     {mso-height-source:auto;}
  71. col
  72.     {mso-width-source:auto;}
  73. br
  74.     {mso-data-placement:same-cell;}
  75. td
  76.     {mso-style-parent:style0;
  77.     padding:0px;
  78.     mso-ignore:padding;
  79.     color:windowtext;
  80.     font-size:10.0pt;
  81.     font-weight:400;
  82.     font-style:normal;
  83.     text-decoration:none;
  84.     font-family:Arial;
  85.     mso-generic-font-family:auto;
  86.     mso-font-charset:0;
  87.     mso-number-format:General;
  88.     text-align:general;
  89.     vertical-align:bottom;
  90.     border:none;
  91.     mso-background-source:auto;
  92.     mso-pattern:auto;
  93.     mso-protection:locked visible;
  94.     white-space:nowrap;
  95.     mso-rotate:0;}
  96. .xl24
  97.     {mso-style-parent:style0;
  98.     background:white;
  99.     mso-pattern:auto none;}
  100. .xl25
  101.     {mso-style-parent:style0;
  102.     color:gray;
  103.     font-size:7.0pt;
  104.     font-family:Arial, sans-serif;
  105.     mso-font-charset:0;
  106.     vertical-align:top;
  107.     background:white;
  108.     mso-pattern:auto none;
  109.     white-space:normal;}
  110. .xl26
  111.     {mso-style-parent:style0;
  112.     font-size:8.0pt;
  113.     background:white;
  114.     mso-pattern:auto none;}
  115. .xl27
  116.     {mso-style-parent:style0;
  117.     color:black;
  118.     background:white;
  119.     mso-pattern:auto none;}
  120. .xl28
  121.     {mso-style-parent:style0;
  122.     color:red;
  123.     font-weight:700;
  124.     font-family:Arial, sans-serif;
  125.     mso-font-charset:0;
  126.     background:white;
  127.     mso-pattern:auto none;}
  128. .style1 {
  129.     font-size: 18px;
  130.     font-weight: bold;
  131. }
  132. .style2 {font-size: 18px}
  133. -->
  134. </style>
  135. <!--[if gte mso 9]><xml>
  136.  <x:ExcelWorkbook>
  137.   <x:ExcelWorksheets>
  138.    <x:ExcelWorksheet>
  139.     <x:Name>Sheet1</x:Name>
  140.     <x:WorksheetOptions>
  141.      <x:Print>
  142.       <x:ValidPrinterInfo/>
  143.       <x:HorizontalResolution>1200</x:HorizontalResolution>
  144.       <x:VerticalResolution>1200</x:VerticalResolution>
  145.      </x:Print>
  146.      <x:Selected/>
  147.      <x:Panes>
  148.       <x:Pane>
  149.        <x:Number>3</x:Number>
  150.        <x:ActiveRow>31</x:ActiveRow>
  151.        <x:ActiveCol>17</x:ActiveCol>
  152.        <x:RangeSelection>$A$1:$R$32</x:RangeSelection>
  153.       </x:Pane>
  154.      </x:Panes>
  155.      <x:ProtectContents>False</x:ProtectContents>
  156.      <x:ProtectObjects>False</x:ProtectObjects>
  157.      <x:ProtectScenarios>False</x:ProtectScenarios>
  158.     </x:WorksheetOptions>
  159.    </x:ExcelWorksheet>
  160.    <x:ExcelWorksheet>
  161.     <x:Name>Sheet2</x:Name>
  162.     <x:WorksheetOptions>
  163.      <x:ProtectContents>False</x:ProtectContents>
  164.      <x:ProtectObjects>False</x:ProtectObjects>
  165.      <x:ProtectScenarios>False</x:ProtectScenarios>
  166.     </x:WorksheetOptions>
  167.    </x:ExcelWorksheet>
  168.    <x:ExcelWorksheet>
  169.     <x:Name>Sheet3</x:Name>
  170.     <x:WorksheetOptions>
  171.      <x:ProtectContents>False</x:ProtectContents>
  172.      <x:ProtectObjects>False</x:ProtectObjects>
  173.      <x:ProtectScenarios>False</x:ProtectScenarios>
  174.     </x:WorksheetOptions>
  175.    </x:ExcelWorksheet>
  176.   </x:ExcelWorksheets>
  177.   <x:WindowHeight>9300</x:WindowHeight>
  178.   <x:WindowWidth>15135</x:WindowWidth>
  179.   <x:WindowTopX>120</x:WindowTopX>
  180.   <x:WindowTopY>120</x:WindowTopY>
  181.   <x:AcceptLabelsInFormulas/>
  182.   <x:ProtectStructure>False</x:ProtectStructure>
  183.   <x:ProtectWindows>False</x:ProtectWindows>
  184.  </x:ExcelWorkbook>
  185.  <x:SupBook>
  186.   <x:Path>\Documents and Settings\javier desk\My Documents\File Box\FSU Masters\EME6635_sp08_Designing_for_Online_Coll_Lng\projects\2\map2.xls</x:Path>
  187.   <x:SheetName>team2map2</x:SheetName>
  188.   <x:SheetName> Allison Middleton 2</x:SheetName>
  189.   <x:SheetName> Bill Gibbons 2</x:SheetName>
  190.   <x:SheetName> Chad Jackson 2</x:SheetName>
  191.   <x:SheetName> Crystal Bancroft 2</x:SheetName>
  192.   <x:SheetName> Dan Murphy 2</x:SheetName>
  193.   <x:SheetName> Elvia Zuazo 2</x:SheetName>
  194.   <x:SheetName> Erin Lundblom 2</x:SheetName>
  195.   <x:SheetName> Gina Minks 2</x:SheetName>
  196.   <x:SheetName> HaeYoungKim 2</x:SheetName>
  197.   <x:SheetName> Jack Sen Ng 2</x:SheetName>
  198.   <x:SheetName> Jason Nam 2</x:SheetName>
  199.   <x:SheetName>MyMap</x:SheetName>
  200.   <x:Xct>
  201.    <x:Count>0</x:Count>
  202.    <x:SheetIndex>0</x:SheetIndex>
  203.   </x:Xct>
  204.   <x:Xct>
  205.    <x:Count>0</x:Count>
  206.    <x:SheetIndex>1</x:SheetIndex>
  207.   </x:Xct>
  208.   <x:Xct>
  209.    <x:Count>0</x:Count>
  210.    <x:SheetIndex>2</x:SheetIndex>
  211.   </x:Xct>
  212.   <x:Xct>
  213.    <x:Count>0</x:Count>
  214.    <x:SheetIndex>3</x:SheetIndex>
  215.   </x:Xct>
  216.   <x:Xct>
  217.    <x:Count>0</x:Count>
  218.    <x:SheetIndex>4</x:SheetIndex>
  219.   </x:Xct>
  220.   <x:Xct>
  221.    <x:Count>0</x:Count>
  222.    <x:SheetIndex>5</x:SheetIndex>
  223.   </x:Xct>
  224.   <x:Xct>
  225.    <x:Count>0</x:Count>
  226.    <x:SheetIndex>6</x:SheetIndex>
  227.   </x:Xct>
  228.   <x:Xct>
  229.    <x:Count>0</x:Count>
  230.    <x:SheetIndex>7</x:SheetIndex>
  231.   </x:Xct>
  232.   <x:Xct>
  233.    <x:Count>0</x:Count>
  234.    <x:SheetIndex>8</x:SheetIndex>
  235.   </x:Xct>
  236.   <x:Xct>
  237.    <x:Count>0</x:Count>
  238.    <x:SheetIndex>9</x:SheetIndex>
  239.   </x:Xct>
  240.   <x:Xct>
  241.    <x:Count>0</x:Count>
  242.    <x:SheetIndex>10</x:SheetIndex>
  243.   </x:Xct>
  244.   <x:Xct>
  245.    <x:Count>0</x:Count>
  246.    <x:SheetIndex>11</x:SheetIndex>
  247.   </x:Xct>
  248.   <x:Xct>
  249.    <x:Count>0</x:Count>
  250.    <x:SheetIndex>12</x:SheetIndex>
  251.   </x:Xct>
  252.  </x:SupBook>
  253.  <x:SupBook>
  254.   <x:Path>http://dev22448-01.sp01.fsu.edu/Winapps\Eudora\Attach\EME6403_OCL\jmapAct_Gibbons.xls</x:Path>
  255.   <x:SheetName>MapIndex</x:SheetName>
  256.   <x:SheetName>MyMap</x:SheetName>
  257.   <x:SheetName>MyMatrix</x:SheetName>
  258.   <x:SheetName>GroupMatrix</x:SheetName>
  259.   <x:SheetName>Downloads</x:SheetName>
  260.   <x:SheetName>SeqData</x:SheetName>
  261.   <x:SheetName>RawScores</x:SheetName>
  262.   <x:ExternName>
  263.    <x:Name>ShiftMapSelectionLeft</x:Name>
  264.   </x:ExternName>
  265.   <x:ExternName>
  266.    <x:Name>ShiftMapSelectionRight</x:Name>
  267.   </x:ExternName>
  268.   <x:Xct>
  269.    <x:Count>0</x:Count>
  270.    <x:SheetIndex>0</x:SheetIndex>
  271.   </x:Xct>
  272.   <x:Xct>
  273.    <x:Count>0</x:Count>
  274.    <x:SheetIndex>1</x:SheetIndex>
  275.   </x:Xct>
  276.   <x:Xct>
  277.    <x:Count>0</x:Count>
  278.    <x:SheetIndex>2</x:SheetIndex>
  279.   </x:Xct>
  280.   <x:Xct>
  281.    <x:Count>0</x:Count>
  282.    <x:SheetIndex>3</x:SheetIndex>
  283.   </x:Xct>
  284.   <x:Xct>
  285.    <x:Count>0</x:Count>
  286.    <x:SheetIndex>4</x:SheetIndex>
  287.   </x:Xct>
  288.   <x:Xct>
  289.    <x:Count>0</x:Count>
  290.    <x:SheetIndex>5</x:SheetIndex>
  291.   </x:Xct>
  292.   <x:Xct>
  293.    <x:Count>0</x:Count>
  294.    <x:SheetIndex>6</x:SheetIndex>
  295.   </x:Xct>
  296.  </x:SupBook>
  297.  <x:ExcelName>
  298.   <x:Name>Print_Area</x:Name>
  299.   <x:SheetIndex>1</x:SheetIndex>
  300.   <x:Formula>=Sheet1!$A$1:$R$32</x:Formula>
  301.  </x:ExcelName>
  302. </xml><![endif]--><!--[if gte mso 9]><xml>
  303.  <o:shapedefaults v:ext="edit" spidmax="1069"/>
  304. </xml><![endif]--><!--[if gte mso 9]><xml>
  305.  <o:shapelayout v:ext="edit">
  306.   <o:idmap v:ext="edit" data="1"/>
  307.   <o:rules v:ext="edit">
  308.    <o:r id="V:Rule1" type="connector" idref="#_x0000_s1046">
  309.     <o:proxy start="" idref="#_x0000_s1044" connectloc="1"/>
  310.     <o:proxy end="" idref="#_x0000_s1031" connectloc="1"/>
  311.    </o:r>
  312.    <o:r id="V:Rule2" type="connector" idref="#_x0000_s1047">
  313.     <o:proxy start="" idref="#_x0000_s1033" connectloc="3"/>
  314.     <o:proxy end="" idref="#_x0000_s1034" connectloc="1"/>
  315.    </o:r>
  316.    <o:r id="V:Rule3" type="connector" idref="#_x0000_s1048">
  317.     <o:proxy start="" idref="#_x0000_s1044" connectloc="0"/>
  318.     <o:proxy end="" idref="#_x0000_s1036" connectloc="1"/>
  319.    </o:r>
  320.    <o:r id="V:Rule4" type="connector" idref="#_x0000_s1049">
  321.     <o:proxy start="" idref="#_x0000_s1040" connectloc="2"/>
  322.     <o:proxy end="" idref="#_x0000_s1033" connectloc="0"/>
  323.    </o:r>
  324.    <o:r id="V:Rule5" type="connector" idref="#_x0000_s1050">
  325.     <o:proxy start="" idref="#_x0000_s1040" connectloc="3"/>
  326.     <o:proxy end="" idref="#_x0000_s1034" connectloc="0"/>
  327.    </o:r>
  328.    <o:r id="V:Rule6" type="connector" idref="#_x0000_s1051">
  329.     <o:proxy start="" idref="#_x0000_s1045" connectloc="2"/>
  330.     <o:proxy end="" idref="#_x0000_s1032" connectloc="2"/>
  331.    </o:r>
  332.    <o:r id="V:Rule7" type="connector" idref="#_x0000_s1052">
  333.     <o:proxy start="" idref="#_x0000_s1039" connectloc="3"/>
  334.     <o:proxy end="" idref="#_x0000_s1031" connectloc="2"/>
  335.    </o:r>
  336.    <o:r id="V:Rule8" type="connector" idref="#_x0000_s1053">
  337.     <o:proxy start="" idref="#_x0000_s1041" connectloc="3"/>
  338.     <o:proxy end="" idref="#_x0000_s1032" connectloc="1"/>
  339.    </o:r>
  340.    <o:r id="V:Rule9" type="connector" idref="#_x0000_s1054">
  341.     <o:proxy start="" idref="#_x0000_s1045" connectloc="3"/>
  342.     <o:proxy end="" idref="#_x0000_s1041" connectloc="1"/>
  343.    </o:r>
  344.    <o:r id="V:Rule10" type="connector" idref="#_x0000_s1055">
  345.     <o:proxy start="" idref="#_x0000_s1032" connectloc="3"/>
  346.     <o:proxy end="" idref="#_x0000_s1031" connectloc="2"/>
  347.    </o:r>
  348.    <o:r id="V:Rule11" type="connector" idref="#_x0000_s1056">
  349.     <o:proxy start="" idref="#_x0000_s1032" connectloc="0"/>
  350.     <o:proxy end="" idref="#_x0000_s1039" connectloc="2"/>
  351.    </o:r>
  352.    <o:r id="V:Rule12" type="connector" idref="#_x0000_s1057">
  353.     <o:proxy start="" idref="#_x0000_s1034" connectloc="0"/>
  354.     <o:proxy end="" idref="#_x0000_s1042" connectloc="2"/>
  355.    </o:r>
  356.    <o:r id="V:Rule13" type="connector" idref="#_x0000_s1058">
  357.     <o:proxy start="" idref="#_x0000_s1033" connectloc="2"/>
  358.     <o:proxy end="" idref="#_x0000_s1043" connectloc="0"/>
  359.    </o:r>
  360.    <o:r id="V:Rule14" type="connector" idref="#_x0000_s1059">
  361.     <o:proxy start="" idref="#_x0000_s1034" connectloc="0"/>
  362.     <o:proxy end="" idref="#_x0000_s1040" connectloc="3"/>
  363.    </o:r>
  364.    <o:r id="V:Rule15" type="connector" idref="#_x0000_s1060">
  365.     <o:proxy start="" idref="#_x0000_s1043" connectloc="3"/>
  366.     <o:proxy end="" idref="#_x0000_s1038" connectloc="1"/>
  367.    </o:r>
  368.    <o:r id="V:Rule16" type="connector" idref="#_x0000_s1061">
  369.     <o:proxy start="" idref="#_x0000_s1038" connectloc="3"/>
  370.     <o:proxy end="" idref="#_x0000_s1039" connectloc="1"/>
  371.    </o:r>
  372.    <o:r id="V:Rule17" type="connector" idref="#_x0000_s1062">
  373.     <o:proxy start="" idref="#_x0000_s1037" connectloc="1"/>
  374.     <o:proxy end="" idref="#_x0000_s1043" connectloc="0"/>
  375.    </o:r>
  376.    <o:r id="V:Rule18" type="connector" idref="#_x0000_s1063">
  377.     <o:proxy start="" idref="#_x0000_s1037" connectloc="3"/>
  378.     <o:proxy end="" idref="#_x0000_s1044" connectloc="3"/>
  379.    </o:r>
  380.    <o:r id="V:Rule19" type="connector" idref="#_x0000_s1064">
  381.     <o:proxy start="" idref="#_x0000_s1043" connectloc="3"/>
  382.     <o:proxy end="" idref="#_x0000_s1031" connectloc="1"/>
  383.    </o:r>
  384.    <o:r id="V:Rule20" type="connector" idref="#_x0000_s1065">
  385.     <o:proxy start="" idref="#_x0000_s1039" connectloc="1"/>
  386.     <o:proxy end="" idref="#_x0000_s1038" connectloc="3"/>
  387.    </o:r>
  388.    <o:r id="V:Rule21" type="connector" idref="#_x0000_s1066">
  389.     <o:proxy start="" idref="#_x0000_s1036" connectloc="2"/>
  390.     <o:proxy end="" idref="#_x0000_s1031" connectloc="1"/>
  391.    </o:r>
  392.    <o:r id="V:Rule22" type="connector" idref="#_x0000_s1067">
  393.     <o:proxy start="" idref="#_x0000_s1043" connectloc="3"/>
  394.     <o:proxy end="" idref="#_x0000_s1039" connectloc="0"/>
  395.    </o:r>
  396.    <o:r id="V:Rule23" type="connector" idref="#_x0000_s1068">
  397.     <o:proxy start="" idref="#_x0000_s1035" connectloc="3"/>
  398.     <o:proxy end="" idref="#_x0000_s1036" connectloc="1"/>
  399.    </o:r>
  400.   </o:rules>
  401.  </o:shapelayout></xml><![endif]-->
  402. </head>
  403.  
  404. <body link=blue vlink=purple>
  405.  
  406. <p><span class="style1">Click on a link or box below to see the item's description appear at the top of the web page</span><span class="style2">.</span><br>
  407. (Feel free to scroll up or down in the box at the top of the page.)</p>
  408. <table x:str border=0 cellpadding=0 cellspacing=0 width=1152 style='border-collapse:
  409.  collapse;table-layout:fixed;width:864pt'>
  410.  <col width=64 span=18 style='width:48pt'>
  411.  <tr height=17 style='height:12.75pt'>
  412.   <td height=17 class=xl24 width=64 style='height:12.75pt;width:48pt'><a
  413.   name="Print_Area">&nbsp;</a></td>
  414.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  415.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  416.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  417.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  418.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  419.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  420.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  421.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  422.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  423.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  424.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  425.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  426.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  427.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  428.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  429.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  430.   <td class=xl24 width=64 style='width:48pt'>&nbsp;</td>
  431.  </tr>
  432.  <tr height=17 style='height:12.75pt'>
  433.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  434.  </tr>
  435.  <tr height=17 style='height:12.75pt'>
  436.   <td colspan=4 rowspan=4 height=68 width=256 style='height:51.0pt;width:192pt'
  437.   align=left valign=top><!--[if gte vml 1]><v:rect id="x_x0020_2" o:spid="_x0000_s1025"
  438.    style='position:absolute;margin-left:36pt;margin-top:330pt;width:33pt;
  439.    height:12pt;z-index:1;visibility:visible;mso-wrap-style:tight;
  440.    v-text-anchor:middle' o:button="t" fillcolor="#9cf [44]" stroked="f"
  441.    strokecolor="gray [23]" strokeweight=".25pt">
  442.    <v:fill o:detectmouseclick="t"/>
  443.    <v:imagedata embosscolor="shadow add(51)"/>
  444.    <v:shadow on="t" type="emboss" color="lineOrFill darken(153)" color2="shadow add(102)"
  445.     offset="1pt,1pt"/>
  446.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  447.     <div style='text-align:center;padding-top:.375pt'><font class="font5">Compare</font></div>
  448.    </v:textbox>
  449.    <x:ClientData ObjectType="Rect">
  450.     <x:FmlaMacro>'\Documents and Settings\javier desk\My Documents\File Box\FSU Masters\EME6635_sp08_Designing_for_Online_Coll_Lng\projects\2\map2.xls'!ViewToolsUnhide</x:FmlaMacro>
  451.     <x:TextHAlign>Center</x:TextHAlign>
  452.     <x:TextVAlign>Center</x:TextVAlign>
  453.    </x:ClientData>
  454.   </v:rect><v:rect id="x_x0020_1" o:spid="_x0000_s1026" style='position:absolute;
  455.    margin-left:0;margin-top:330pt;width:33pt;height:12pt;z-index:2;
  456.    visibility:visible;mso-wrap-style:tight;v-text-anchor:middle' o:button="t"
  457.    fillcolor="#9cf [44]" stroked="f" strokecolor="gray [23]" strokeweight=".25pt">
  458.    <v:fill o:detectmouseclick="t"/>
  459.    <v:imagedata embosscolor="shadow add(51)"/>
  460.    <v:shadow on="t" type="emboss" color="lineOrFill darken(153)" color2="shadow add(102)"
  461.     offset="1pt,1pt"/>
  462.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  463.     <div style='text-align:center;padding-top:.375pt'><font class="font6">Edit
  464.     map</font></div>
  465.    </v:textbox>
  466.    <x:ClientData ObjectType="Rect">
  467.     <x:FmlaMacro>'\Documents and Settings\javier desk\My Documents\File Box\FSU Masters\EME6635_sp08_Designing_for_Online_Coll_Lng\projects\2\map2.xls'!ViewToolsHide</x:FmlaMacro>
  468.     <x:TextHAlign>Center</x:TextHAlign>
  469.     <x:TextVAlign>Center</x:TextVAlign>
  470.    </x:ClientData>
  471.   </v:rect><v:shapetype id="_x0000_t5" coordsize="21600,21600" o:spt="5" adj="10800"
  472.    path="m@0,l,21600r21600,xe">
  473.    <v:stroke joinstyle="miter"/>
  474.    <v:formulas>
  475.     <v:f eqn="val #0"/>
  476.     <v:f eqn="prod #0 1 2"/>
  477.     <v:f eqn="sum @1 10800 0"/>
  478.    </v:formulas>
  479.    <v:path gradientshapeok="t" o:connecttype="custom" o:connectlocs="@0,0;@1,10800;0,21600;10800,21600;21600,21600;@2,10800"
  480.     textboxrect="0,10800,10800,18000;5400,10800,16200,18000;10800,10800,21600,18000;0,7200,7200,21600;7200,7200,14400,21600;14400,7200,21600,21600"/>
  481.    <v:handles>
  482.     <v:h position="#0,topLeft" xrange="0,21600"/>
  483.    </v:handles>
  484.   </v:shapetype><v:shape id="x_x0020_11" o:spid="_x0000_s1027" type="#_x0000_t5"
  485.    style='position:absolute;margin-left:318pt;margin-top:328.5pt;width:0;
  486.    height:9pt;rotation:90;z-index:3;v-text-anchor:middle' o:button="t" adj="10231"
  487.    fillcolor="#333 [63]" stroked="f">
  488.    <v:fill o:detectmouseclick="t"/>
  489.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  490.    <v:textbox style='mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt"/>
  491.    <x:ClientData ObjectType="Shape">
  492.     <x:FmlaMacro>'http://dev22448-01.sp01.fsu.edu/Winapps\Eudora\Attach\EME6403_OCL\jmapAct_Gibbons.xls'!ShiftMapSelectionRight</x:FmlaMacro>
  493.    </x:ClientData>
  494.   </v:shape><v:shape id="x_x0020_10" o:spid="_x0000_s1028" type="#_x0000_t5"
  495.    alt="CTRL-G" style='position:absolute;margin-left:184.5pt;margin-top:328.5pt;
  496.    width:0;height:9pt;rotation:270;z-index:4;v-text-anchor:middle' o:button="t"
  497.    adj="10231" fillcolor="#333 [63]" stroked="f">
  498.    <v:fill o:detectmouseclick="t"/>
  499.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  500.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  501.     <div style='text-align:left'><font class="font0">21</font></div>
  502.    </v:textbox>
  503.    <x:ClientData ObjectType="Shape">
  504.     <x:FmlaMacro>'http://dev22448-01.sp01.fsu.edu/Winapps\Eudora\Attach\EME6403_OCL\jmapAct_Gibbons.xls'!ShiftMapSelectionLeft</x:FmlaMacro>
  505.    </x:ClientData>
  506.   </v:shape><v:shape id="_x0000_s1029" type="#_x0000_t5" style='position:absolute;
  507.    margin-left:321pt;margin-top:323.25pt;width:0;height:9pt;rotation:90;
  508.    z-index:5;v-text-anchor:middle' o:button="t" adj="10231" fillcolor="#333 [63]"
  509.    stroked="f">
  510.    <v:fill o:detectmouseclick="t"/>
  511.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  512.    <v:textbox style='mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt"/>
  513.    <x:ClientData ObjectType="Shape">
  514.     <x:FmlaMacro>'http://dev22448-01.sp01.fsu.edu/Winapps\Eudora\Attach\EME6403_OCL\jmapAct_Gibbons.xls'!ShiftMapSelectionRight</x:FmlaMacro>
  515.    </x:ClientData>
  516.   </v:shape><v:shape id="_x0000_s1030" type="#_x0000_t5" alt="CTRL-G" style='position:absolute;
  517.    margin-left:187.5pt;margin-top:323.25pt;width:0;height:9pt;rotation:270;
  518.    z-index:6;v-text-anchor:middle' o:button="t" adj="10231" fillcolor="#333 [63]"
  519.    stroked="f">
  520.    <v:fill o:detectmouseclick="t"/>
  521.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  522.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  523.     <div style='text-align:left'><font class="font0">21</font></div>
  524.    </v:textbox>
  525.    <x:ClientData ObjectType="Shape">
  526.     <x:FmlaMacro>'http://dev22448-01.sp01.fsu.edu/Winapps\Eudora\Attach\EME6403_OCL\jmapAct_Gibbons.xls'!ShiftMapSelectionLeft</x:FmlaMacro>
  527.    </x:ClientData>
  528.   </v:shape><v:rect id="_x0000_s1031" style='position:absolute;margin-left:704.25pt;
  529.    margin-top:175.5pt;width:72.75pt;height:28.5pt;z-index:7;mso-wrap-style:tight;
  530.    v-text-anchor:middle' fillcolor="#9cf [44]">
  531.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  532.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  533.     <div style='text-align:center;padding-top:1.125pt'><font class="font7">Level
  534.     of Learning Achieved</font></div>
  535.    </v:textbox>
  536.    <x:ClientData ObjectType="Rect">
  537.     <x:TextHAlign>Center</x:TextHAlign>
  538.     <x:TextVAlign>Center</x:TextVAlign>
  539.    </x:ClientData>
  540.   </v:rect><v:rect id="_x0000_s1032" style='position:absolute;margin-left:465.75pt;
  541.    margin-top:299.25pt;width:66.75pt;height:27pt;z-index:8;mso-wrap-style:tight;
  542.    v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  543.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  544.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  545.     <div style='text-align:center;padding-top:.75pt'><font class="font7">Quality
  546.     of communication</font></div>
  547.    </v:textbox>
  548.    <x:ClientData ObjectType="Rect">
  549.     <x:TextHAlign>Center</x:TextHAlign>
  550.     <x:TextVAlign>Center</x:TextVAlign>
  551.    </x:ClientData>
  552.   </v:rect><v:rect id="_x0000_s1033" style='position:absolute;margin-left:15pt;
  553.    margin-top:75pt;width:58.5pt;height:33pt;z-index:9;mso-wrap-style:tight;
  554.    v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  555.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  556.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  557.     <div style='text-align:center;padding-top:3.75pt'><font class="font7">Shared
  558.     vision &amp; goals</font></div>
  559.    </v:textbox>
  560.    <x:ClientData ObjectType="Rect">
  561.     <x:TextHAlign>Center</x:TextHAlign>
  562.     <x:TextVAlign>Center</x:TextVAlign>
  563.    </x:ClientData>
  564.   </v:rect><v:rect id="_x0000_s1034" style='position:absolute;margin-left:224.25pt;
  565.    margin-top:76.5pt;width:61.5pt;height:31.5pt;z-index:10;mso-wrap-style:tight;
  566.    v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  567.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  568.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  569.     <div style='text-align:center;padding-top:3.0pt'><font class="font7">Effective
  570.     planning</font></div>
  571.    </v:textbox>
  572.    <x:ClientData ObjectType="Rect">
  573.     <x:TextHAlign>Center</x:TextHAlign>
  574.     <x:TextVAlign>Center</x:TextVAlign>
  575.    </x:ClientData>
  576.   </v:rect><v:rect id="_x0000_s1035" style='position:absolute;margin-left:324pt;
  577.    margin-top:75pt;width:107.25pt;height:31.5pt;z-index:11;mso-wrap-style:tight;
  578.    v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  579.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  580.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  581.     <div style='text-align:center;padding-top:3.0pt'><font class="font7">Learning
  582.     style of group members</font></div>
  583.    </v:textbox>
  584.    <x:ClientData ObjectType="Rect">
  585.     <x:TextHAlign>Center</x:TextHAlign>
  586.     <x:TextVAlign>Center</x:TextVAlign>
  587.    </x:ClientData>
  588.   </v:rect><v:rect id="_x0000_s1036" style='position:absolute;margin-left:551.25pt;
  589.    margin-top:76.5pt;width:54.75pt;height:28.5pt;z-index:12;mso-wrap-style:tight;
  590.    v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  591.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  592.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  593.     <div style='text-align:center;padding-top:1.5pt'><font class="font7">Learner
  594.     motivation</font></div>
  595.    </v:textbox>
  596.    <x:ClientData ObjectType="Rect">
  597.     <x:TextHAlign>Center</x:TextHAlign>
  598.     <x:TextVAlign>Center</x:TextVAlign>
  599.    </x:ClientData>
  600.   </v:rect><v:rect id="_x0000_s1037" style='position:absolute;margin-left:221.25pt;
  601.    margin-top:132.75pt;width:66.75pt;height:34.5pt;z-index:13;mso-wrap-style:tight;
  602.    v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  603.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  604.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  605.     <div style='text-align:center'><font class="font7">Internal reflection on
  606.     group process</font></div>
  607.    </v:textbox>
  608.    <x:ClientData ObjectType="Rect">
  609.     <x:TextHAlign>Center</x:TextHAlign>
  610.     <x:TextVAlign>Center</x:TextVAlign>
  611.    </x:ClientData>
  612.   </v:rect><v:rect id="_x0000_s1038" style='position:absolute;margin-left:233.25pt;
  613.    margin-top:230.25pt;width:50.25pt;height:27.75pt;z-index:14;
  614.    mso-wrap-style:tight;v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  615.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  616.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  617.     <div style='text-align:center;padding-top:1.125pt'><font class="font7">United
  618.     team spirit</font></div>
  619.    </v:textbox>
  620.    <x:ClientData ObjectType="Rect">
  621.     <x:TextHAlign>Center</x:TextHAlign>
  622.     <x:TextVAlign>Center</x:TextVAlign>
  623.    </x:ClientData>
  624.   </v:rect><v:rect id="_x0000_s1039" style='position:absolute;margin-left:467.25pt;
  625.    margin-top:223.5pt;width:62.25pt;height:42pt;z-index:15;mso-wrap-style:tight;
  626.    v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  627.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  628.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  629.     <div style='text-align:center;padding-top:2.625pt'><font class="font7">Team
  630.     dynamism &amp; synergistic effort</font></div>
  631.    </v:textbox>
  632.    <x:ClientData ObjectType="Rect">
  633.     <x:TextHAlign>Center</x:TextHAlign>
  634.     <x:TextVAlign>Center</x:TextVAlign>
  635.    </x:ClientData>
  636.   </v:rect><v:rect id="_x0000_s1040"
  637.    href="http://www.elearninglink.com/team2map/research.html" style='position:absolute;
  638.    margin-left:120.75pt;margin-top:10.5pt;width:54.75pt;height:27.75pt;
  639.    z-index:16;mso-wrap-style:tight;v-text-anchor:middle' o:button="t"
  640.    fillcolor="#ff9 [43]" stroked="f">
  641.    <v:fill o:detectmouseclick="t"/>
  642.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  643.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  644.     <div style='text-align:center;padding-top:1.125pt'><font class="font7">Access
  645.     to resources</font></div>
  646.    </v:textbox>
  647.    <x:ClientData ObjectType="Rect">
  648.     <x:TextHAlign>Center</x:TextHAlign>
  649.     <x:TextVAlign>Center</x:TextVAlign>
  650.    </x:ClientData>
  651.   </v:rect><v:rect id="_x0000_s1041" style='position:absolute;margin-left:231pt;
  652.    margin-top:287.25pt;width:55.5pt;height:27.75pt;z-index:17;mso-wrap-style:tight;
  653.    v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  654.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  655.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  656.     <div style='text-align:center;padding-top:1.125pt'><font class="font7">Culture
  657.     of openness</font></div>
  658.    </v:textbox>
  659.    <x:ClientData ObjectType="Rect">
  660.     <x:TextHAlign>Center</x:TextHAlign>
  661.     <x:TextVAlign>Center</x:TextVAlign>
  662.    </x:ClientData>
  663.   </v:rect><v:rect id="_x0000_s1042" style='position:absolute;margin-left:263.25pt;
  664.    margin-top:11.25pt;width:66pt;height:27.75pt;z-index:18;mso-wrap-style:tight;
  665.    v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  666.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  667.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  668.     <div style='text-align:center;padding-top:1.125pt'><font class="font7">Agreed-on
  669.     team protocols</font></div>
  670.    </v:textbox>
  671.    <x:ClientData ObjectType="Rect">
  672.     <x:TextHAlign>Center</x:TextHAlign>
  673.     <x:TextVAlign>Center</x:TextVAlign>
  674.    </x:ClientData>
  675.   </v:rect><v:rect id="_x0000_s1043" style='position:absolute;margin-left:11.25pt;
  676.    margin-top:174.75pt;width:66.75pt;height:29.25pt;z-index:19;
  677.    mso-wrap-style:tight;v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  678.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  679.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  680.     <div style='text-align:center;padding-top:1.875pt'><font class="font7">Positive
  681.     interdependence</font></div>
  682.    </v:textbox>
  683.    <x:ClientData ObjectType="Rect">
  684.     <x:TextHAlign>Center</x:TextHAlign>
  685.     <x:TextVAlign>Center</x:TextVAlign>
  686.    </x:ClientData>
  687.   </v:rect><v:rect id="_x0000_s1044" style='position:absolute;margin-left:464.25pt;
  688.    margin-top:129pt;width:66pt;height:40.5pt;flip:x;z-index:20;
  689.    mso-wrap-style:tight;v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  690.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  691.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  692.     <div style='text-align:center;padding-top:7.5pt'><font class="font7">Individual
  693.     accountability</font></div>
  694.    </v:textbox>
  695.    <x:ClientData ObjectType="Rect">
  696.     <x:TextHAlign>Center</x:TextHAlign>
  697.     <x:TextVAlign>Center</x:TextVAlign>
  698.    </x:ClientData>
  699.   </v:rect><v:rect id="_x0000_s1045" style='position:absolute;margin-left:14.25pt;
  700.    margin-top:246pt;width:61.5pt;height:37.5pt;z-index:21;mso-wrap-style:tight;
  701.    v-text-anchor:middle' fillcolor="#ff9 [43]" stroked="f">
  702.    <v:shadow on="t" opacity=".5" offset=",3pt"/>
  703.    <v:textbox style='mso-direction-alt:auto;mso-rotate-with-shape:t' inset="2.16pt,1.8pt,2.16pt,1.8pt">
  704.     <div style='text-align:center;padding-top:.375pt'><font class="font7">Interpersonal
  705.     small group skills</font></div>
  706.    </v:textbox>
  707.    <x:ClientData ObjectType="Rect">
  708.     <x:TextHAlign>Center</x:TextHAlign>
  709.     <x:TextVAlign>Center</x:TextVAlign>
  710.    </x:ClientData>
  711.   </v:rect><v:shapetype id="_x0000_t38" coordsize="21600,21600" o:spt="38"
  712.    o:oned="t" path="m,c@0,0@1,5400@1,10800@1,16200@2,21600,21600,21600e"
  713.    filled="f">
  714.    <v:formulas>
  715.     <v:f eqn="mid #0 0"/>
  716.     <v:f eqn="val #0"/>
  717.     <v:f eqn="mid #0 21600"/>
  718.    </v:formulas>
  719.    <v:path arrowok="t" fillok="f" o:connecttype="none"/>
  720.    <v:handles>
  721.     <v:h position="#0,center"/>
  722.    </v:handles>
  723.    <o:lock v:ext="edit" shapetype="t"/>
  724.   </v:shapetype><v:shape id="_x0000_s1046" type="#_x0000_t38" style='position:absolute;
  725.    margin-left:530.25pt;margin-top:149.25pt;width:174pt;height:40.5pt;
  726.    z-index:22' o:connectortype="curved" adj="10733,-88800,-89754"
  727.    strokecolor="black [8]" strokeweight="6pt">
  728.    <v:stroke endarrow="block"/>
  729.   </v:shape><v:shape id="_x0000_s1047" type="#_x0000_t38" style='position:absolute;
  730.    margin-left:73.5pt;margin-top:91.5pt;width:150.75pt;height:.75pt;z-index:23'
  731.    o:connectortype="curved" adj="10746,-3132000,-12143" strokecolor="black [8]"
  732.    strokeweight="6pt">
  733.    <v:stroke endarrow="block"/>
  734.   </v:shape><v:shapetype id="_x0000_t37" coordsize="21600,21600" o:spt="37"
  735.    o:oned="t" path="m,c10800,,21600,10800,21600,21600e" filled="f">
  736.    <v:path arrowok="t" fillok="f" o:connecttype="none"/>
  737.    <o:lock v:ext="edit" shapetype="t"/>
  738.   </v:shapetype><v:shape id="_x0000_s1048" type="#_x0000_t37" style='position:absolute;
  739.    margin-left:504.75pt;margin-top:83.25pt;width:38.25pt;height:54pt;
  740.    rotation:270;z-index:24' o:connectortype="curved" adj="-264706,-58500,-264706"
  741.    strokecolor="black [8]" strokeweight="6pt">
  742.    <v:stroke endarrow="block"/>
  743.   </v:shape><v:shape id="_x0000_s1049" type="#_x0000_t38" style='position:absolute;
  744.    margin-left:78pt;margin-top:4.5pt;width:36.75pt;height:104.25pt;rotation:90;
  745.    z-index:25' o:connectortype="curved" adj="10580,-11499,-93894"
  746.    strokecolor="black [8]" strokeweight="6pt">
  747.    <v:stroke endarrow="block"/>
  748.   </v:shape><v:shape id="_x0000_s1050" type="#_x0000_t37" style='position:absolute;
  749.    margin-left:175.5pt;margin-top:24.75pt;width:79.5pt;height:51.75pt;
  750.    z-index:26' o:connectortype="curved" adj="-50740,-17530,-50740"
  751.    strokecolor="black [8]" strokeweight="6pt">
  752.    <v:stroke endarrow="block"/>
  753.   </v:shape><v:shape id="_x0000_s1051" type="#_x0000_t38" style='position:absolute;
  754.    margin-left:250.5pt;margin-top:78pt;width:42.75pt;height:454.5pt;rotation:90;
  755.    flip:x;z-index:27' o:connectortype="curved" adj="30695,15663,-28421"
  756.    strokecolor="black [8]" strokeweight="4pt">
  757.    <v:stroke endarrow="block"/>
  758.   </v:shape><v:shape id="_x0000_s1052" type="#_x0000_t37" style='position:absolute;
  759.    margin-left:529.5pt;margin-top:204pt;width:211.5pt;height:40.5pt;flip:y;
  760.    z-index:28' o:connectortype="curved" adj="-68383,139600,-68383"
  761.    strokecolor="black [8]" strokeweight="4pt">
  762.    <v:stroke endarrow="block"/>
  763.   </v:shape><v:shape id="_x0000_s1053" type="#_x0000_t38" style='position:absolute;
  764.    margin-left:286.5pt;margin-top:301.5pt;width:179.25pt;height:11.25pt;
  765.    z-index:29' o:connectortype="curved" adj="10800,-612000,-46103"
  766.    strokecolor="black [8]" strokeweight="6pt">
  767.    <v:stroke endarrow="block"/>
  768.   </v:shape><v:shape id="_x0000_s1054" type="#_x0000_t38" style='position:absolute;
  769.    margin-left:75.75pt;margin-top:264.75pt;width:155.25pt;height:36.75pt;
  770.    z-index:30' o:connectortype="curved" adj="10748,-165747,-12104"
  771.    strokecolor="black [8]" strokeweight="6pt">
  772.    <v:stroke endarrow="block"/>
  773.   </v:shape><v:shape id="_x0000_s1055" type="#_x0000_t37" style='position:absolute;
  774.    margin-left:532.5pt;margin-top:204pt;width:208.5pt;height:108.75pt;flip:y;
  775.    z-index:31' o:connectortype="curved" adj="-70122,65545,-70122"
  776.    strokecolor="black [8]" strokeweight="6pt">
  777.    <v:stroke endarrow="block"/>
  778.   </v:shape><v:shape id="_x0000_s1056" type="#_x0000_t38" style='position:absolute;
  779.    margin-left:482.25pt;margin-top:282pt;width:33.75pt;height:.75pt;rotation:270;
  780.    flip:x;z-index:32' o:connectortype="curved" adj="10560,9115200,-301440"
  781.    strokecolor="black [8]" strokeweight="6pt">
  782.    <v:stroke endarrow="block"/>
  783.   </v:shape><v:shape id="_x0000_s1057" type="#_x0000_t38" style='position:absolute;
  784.    margin-left:257.25pt;margin-top:36.75pt;width:37.5pt;height:41.25pt;
  785.    rotation:270;z-index:33' o:connectortype="curved" adj="10800,-49091,-153360"
  786.    strokecolor="black [8]" strokeweight="6pt">
  787.    <v:stroke endarrow="block"/>
  788.   </v:shape><v:shape id="_x0000_s1058" type="#_x0000_t38" style='position:absolute;
  789.    margin-left:11.25pt;margin-top:141pt;width:66.75pt;height:.75pt;rotation:90;
  790.    flip:x;z-index:34' o:connectortype="curved" adj="10679,3607200,-17960"
  791.    strokecolor="black [8]" strokeweight="6pt">
  792.    <v:stroke endarrow="block"/>
  793.   </v:shape><v:shape id="_x0000_s1059" type="#_x0000_t37" style='position:absolute;
  794.    margin-left:189pt;margin-top:11.25pt;width:51.75pt;height:79.5pt;rotation:270;
  795.    flip:x;z-index:35' o:connectortype="curved" adj="-111130,25472,-111130"
  796.    strokecolor="black [8]" strokeweight="6pt">
  797.    <v:stroke endarrow="block"/>
  798.   </v:shape><v:shape id="_x0000_s1060" type="#_x0000_t38" style='position:absolute;
  799.    margin-left:78pt;margin-top:189.75pt;width:155.25pt;height:54.75pt;
  800.    z-index:36' o:connectortype="curved" adj="10748,-81666,-12417"
  801.    strokecolor="black [8]" strokeweight="6pt">
  802.    <v:stroke endarrow="block"/>
  803.   </v:shape><v:shapetype id="_x0000_t32" coordsize="21600,21600" o:spt="32"
  804.    o:oned="t" path="m,l21600,21600e" filled="f">
  805.    <v:path arrowok="t" fillok="f" o:connecttype="none"/>
  806.    <o:lock v:ext="edit" shapetype="t"/>
  807.   </v:shapetype><v:shape id="_x0000_s1061" type="#_x0000_t32" style='position:absolute;
  808.    margin-left:283.5pt;margin-top:244.5pt;width:183.75pt;height:0;z-index:37'
  809.    o:connectortype="curved" adj="-44213,-1,-44213" strokecolor="black [8]"
  810.    strokeweight="6pt">
  811.    <v:stroke endarrow="block"/>
  812.   </v:shape><v:shape id="_x0000_s1062" type="#_x0000_t37" style='position:absolute;
  813.    margin-left:45pt;margin-top:150pt;width:176.25pt;height:24.75pt;rotation:180;
  814.    flip:y;z-index:38' o:connectortype="curved" adj="-28494,145964,-28494"
  815.    strokecolor="black [8]" strokeweight="6pt">
  816.    <v:stroke endarrow="block"/>
  817.   </v:shape><v:shape id="_x0000_s1063" type="#_x0000_t38" style='position:absolute;
  818.    margin-left:4in;margin-top:149.25pt;width:176.25pt;height:.75pt;flip:y;
  819.    z-index:39' o:connectortype="curved" adj="10681,4816800,-47354"
  820.    strokecolor="black [8]" strokeweight="6pt">
  821.    <v:stroke endarrow="block"/>
  822.   </v:shape><v:shape id="_x0000_s1064" type="#_x0000_t32" style='position:absolute;
  823.    margin-left:78pt;margin-top:189.75pt;width:626.25pt;height:0;z-index:40'
  824.    o:connectortype="curved" adj="-3615,-1,-3615" strokecolor="black [8]"
  825.    strokeweight="6pt">
  826.    <v:stroke endarrow="block"/>
  827.   </v:shape><v:shape id="_x0000_s1065" type="#_x0000_t32" style='position:absolute;
  828.    margin-left:283.5pt;margin-top:244.5pt;width:183.75pt;height:0;rotation:180;
  829.    z-index:41' o:connectortype="curved" adj="-65813,-1,-65813" strokecolor="black [8]"
  830.    strokeweight="4pt">
  831.    <v:stroke endarrow="block"/>
  832.   </v:shape><v:shape id="_x0000_s1066" type="#_x0000_t37" style='position:absolute;
  833.    margin-left:599.25pt;margin-top:84.75pt;width:84.75pt;height:125.25pt;
  834.    rotation:90;flip:x;z-index:42' o:connectortype="curved" adj="-140304,36675,-140304"
  835.    strokecolor="black [8]" strokeweight="6pt">
  836.    <v:stroke endarrow="block"/>
  837.   </v:shape><v:shape id="_x0000_s1067" type="#_x0000_t37" style='position:absolute;
  838.    margin-left:78pt;margin-top:189.75pt;width:420.75pt;height:33.75pt;
  839.    z-index:43' o:connectortype="curved" adj="-5060,-132480,-5060"
  840.    strokecolor="black [8]" strokeweight="6pt">
  841.    <v:stroke endarrow="block"/>
  842.   </v:shape><v:shape id="_x0000_s1068" type="#_x0000_t32" style='position:absolute;
  843.    margin-left:431.25pt;margin-top:90.75pt;width:120pt;height:0;z-index:44'
  844.    o:connectortype="curved" adj="-71333,-1,-71333" strokecolor="black [8]"
  845.    strokeweight="6pt">
  846.    <v:stroke endarrow="block"/>
  847.   </v:shape><![endif]--><![if !vml]><span style='mso-ignore:vglayout; position:absolute; z-index:1; margin-left:-1px; margin-top:14px; width:1040px; height:448px; left: 3px; top: 102px;'><img
  848.   border=0 width=1040 height=448 src="map_files/image001.gif"
  849.   usemap="#MicrosoftOfficeMap0"
  850.   alt="CTRL-G,CTRL-G,Text Box: Individual accountability" v:shapes="x_x0020_2 x_x0020_1 _x0000_s1031 _x0000_s1032 _x0000_s1033 _x0000_s1034 _x0000_s1035 _x0000_s1036 _x0000_s1037 _x0000_s1038 _x0000_s1039 _x0000_s1040 _x0000_s1041 _x0000_s1042 _x0000_s1043 _x0000_s1044 _x0000_s1045 _x0000_s1046 _x0000_s1047 _x0000_s1048 _x0000_s1049 _x0000_s1050 _x0000_s1051 _x0000_s1052 _x0000_s1053 _x0000_s1054 _x0000_s1055 _x0000_s1056 _x0000_s1057 _x0000_s1058 _x0000_s1059 _x0000_s1060 _x0000_s1061 _x0000_s1062 _x0000_s1063 _x0000_s1064 _x0000_s1065 _x0000_s1066 _x0000_s1067 _x0000_s1068">
  851.       <map name=MicrosoftOfficeMap0>
  852.         <area shape=Rect
  853.   coords="164,3,237,40"
  854.   href="descriptions.html#access2" target="topFrame">
  855.         <area shape="poly" coords="246,26,242,25" href="#">
  856.         <area shape="circle" coords="239,4,1" href="#">
  857.         <area shape="rect" coords="351,2,440,39" href="descriptions.html#agreed2" target="topFrame">
  858.       <area shape="rect" coords="239,9,308,43" href="research.html#access" target="topFrame">
  859.       <area shape="rect" coords="307,27,346,88" href="research.html#effective" target="topFrame">
  860.       </map>
  861.   </span><![endif]>
  862.     <span
  863.   style='mso-ignore:vglayout2'>
  864. <table cellpadding=0 cellspacing=0>
  865.    <tr>
  866.     <td colspan=4 rowspan=4 height=68 class=xl25 width=256 style='height:51.0pt;
  867.     width:192pt'>&nbsp;</td>
  868.    </tr>
  869.   </table>
  870.   </span></td>
  871.   <td colspan=7 class=xl24 style='mso-ignore:colspan'>&nbsp;</td>
  872.   <td class=xl26>&nbsp;</td>
  873.   <td colspan=6 class=xl24 style='mso-ignore:colspan'>&nbsp;</td>
  874.  </tr>
  875.  <tr height=17 style='height:12.75pt'>
  876.   <td height=17 colspan=7 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  877.  
  878.   <td class=xl26>&nbsp;</td>
  879.   <td colspan=6 class=xl24 style='mso-ignore:colspan'>&nbsp;</td>
  880.  </tr>
  881.  <tr height=17 style='height:12.75pt'>
  882.   <td height=17 colspan=14 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  883.  </tr>
  884.  <tr height=17 style='height:12.75pt'>
  885.   <td height=17 colspan=14 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  886.  </tr>
  887.  <tr height=17 style='height:12.75pt'>
  888.   <td height=17 colspan=12 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  889.   <td class=xl27>&nbsp;</td>
  890.   <td colspan=5 class=xl24 style='mso-ignore:colspan'>&nbsp;</td>
  891.  </tr>
  892.  <tr height=17 style='height:12.75pt'>
  893.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  894.  </tr>
  895.  <tr height=17 style='height:12.75pt'>
  896.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  897.  </tr>
  898.  <tr height=17 style='height:12.75pt'>
  899.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  900.  </tr>
  901.  <tr height=17 style='height:12.75pt'>
  902.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  903.  </tr>
  904.  <tr height=17 style='height:12.75pt'>
  905.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  906.  </tr>
  907.  <tr height=17 style='height:12.75pt'>
  908.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  909.  </tr>
  910.  <tr height=17 style='height:12.75pt'>
  911.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  912.  </tr>
  913.  <tr height=17 style='height:12.75pt'>
  914.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  915.  </tr>
  916.  <tr height=17 style='height:12.75pt'>
  917.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  918.  </tr>
  919.  <tr height=17 style='height:12.75pt'>
  920.   <td height=17 colspan=9 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  921.   <td class=xl28>&nbsp;</td>
  922.   <td colspan=8 class=xl24 style='mso-ignore:colspan'>&nbsp;</td>
  923.  </tr>
  924.  <tr height=17 style='height:12.75pt'>
  925.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  926.  </tr>
  927.  <tr height=17 style='height:12.75pt'>
  928.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  929.  </tr>
  930.  <tr height=17 style='height:12.75pt'>
  931.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  932.  </tr>
  933.  <tr height=17 style='height:12.75pt'>
  934.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  935.  </tr>
  936.  <tr height=17 style='height:12.75pt'>
  937.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  938.  </tr>
  939.  <tr height=17 style='height:12.75pt'>
  940.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  941.  </tr>
  942.  <tr height=17 style='height:12.75pt'>
  943.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  944.  </tr>
  945.  <tr height=17 style='height:12.75pt'>
  946.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  947.  </tr>
  948.  <tr height=17 style='height:12.75pt'>
  949.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  950.  </tr>
  951.  <tr height=17 style='height:12.75pt'>
  952.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  953.  </tr>
  954.  <tr height=17 style='height:12.75pt'>
  955.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  956.  </tr>
  957.  <tr height=17 style='height:12.75pt'>
  958.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  959.  </tr>
  960.  <tr height=17 style='height:12.75pt'>
  961.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  962.  </tr>
  963.  <tr height=17 style='height:12.75pt'>
  964.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  965.  </tr>
  966.  <tr height=17 style='height:12.75pt'>
  967.   <td height=17 colspan=18 class=xl24 style='height:12.75pt;mso-ignore:colspan'>&nbsp;</td>
  968.  </tr>
  969.  <![if supportMisalignedColumns]>
  970.  <tr height=0 style='display:none'>
  971.   <td width=64 style='width:48pt'></td>
  972.   <td width=64 style='width:48pt'></td>
  973.   <td width=64 style='width:48pt'></td>
  974.   <td width=64 style='width:48pt'></td>
  975.   <td width=64 style='width:48pt'></td>
  976.   <td width=64 style='width:48pt'></td>
  977.   <td width=64 style='width:48pt'></td>
  978.   <td width=64 style='width:48pt'></td>
  979.   <td width=64 style='width:48pt'></td>
  980.   <td width=64 style='width:48pt'></td>
  981.   <td width=64 style='width:48pt'></td>
  982.   <td width=64 style='width:48pt'></td>
  983.   <td width=64 style='width:48pt'></td>
  984.   <td width=64 style='width:48pt'></td>
  985.   <td width=64 style='width:48pt'></td>
  986.   <td width=64 style='width:48pt'></td>
  987.   <td width=64 style='width:48pt'></td>
  988.   <td width=64 style='width:48pt'></td>
  989.  </tr>
  990.  <![endif]>
  991. </table>
  992.  
  993. </body>
  994.  
  995. </html>
  996.  
  997. Code for topframe:
  998. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  999. <html xmlns="http://www.w3.org/1999/xhtml">
  1000. <head>
  1001. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  1002. <title>Untitled Document</title>
  1003. <style type="text/css">
  1004. <!--
  1005. body {
  1006.     background-color: #FFFFCC;
  1007. }
  1008. -->
  1009. </style></head>
  1010.  
  1011. <body>
  1012. </body>
  1013. </html>
Jul 31 '08 #1
1 3259
eWish
971 Expert 512MB
Jahamos,

When posting code samples please use the [code][/code] tags. I have edited your post to include them. Also, large amounts of code are not always necessary. It is preferred if you only post the relevant code in lieu of the entire file. If the file is large then please include it as an attachment.

Thank you!

Kevin
Jul 31 '08 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

11
by: jm | last post by:
Somebody on here recommended Dreamweaver with PHP. I am coming from (still using really) ASP and ASP.NET. PHP is more like ASP and not a whole lot like .net, but I wanted to know how Dreamweaver...
3
by: Captain Nemo | last post by:
Hi I'm essentially a back-end programmer so I don't know very much about Dreamweaver. However, I work with web-designers who are keen for me to write my pages using Dreamweaver templates. ...
2
by: Lovely Angel | last post by:
Dear Friends Hope you all doing great. There is this thing which to me looks possible, but when I searched over the net I couldnt find anything. Any ideas about this please do let m eknow. I...
4
by: Leythos | last post by:
I've got several sites that I used DreamWeaver MX to add RollOver buttons to the pages, it also adds some javascript that pre-loads the images and does the mouse_over and such. In FireFox 1.0.1...
4
by: Ian | last post by:
Hi there, Has anybody got any tips or recommendations for using Vs.Net and Dreamweaver 2004 together? I like to use dreamweaver as the layout tool as for me it just seems a little more...
7
by: tshad | last post by:
Can you use Dreamweaver and VS.Net together now? I have a site that was built with DW code inside (therefore you could not use VS.Net 2003 with it). Is this still the case? Apparently, you...
9
by: =?Utf-8?B?Sm9obiBCYWlsZXk=?= | last post by:
I have a ASP .Net page that allows moving around items on the page through javascript. This page works fine in IE. In FireFox however, I have found that if the page is using XHTML 1.0...
1
by: RubbedLung | last post by:
Hey guys, I've run my site through the validator and everything checks out however, I'm noticing in using different browsers to view the site, I'm getting excess space in one (Firefox) that...
0
by: Aaron Smith | last post by:
Does anyone know of a component where a end user can import a picture and then draw out hotspots on that image but then be able to save the sizes and locations of those hotspots relative to their...
0
by: Rina0 | last post by:
Cybersecurity engineering is a specialized field that focuses on the design, development, and implementation of systems, processes, and technologies that protect against cyber threats and...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.