Changing link properties between tables

Hello,
Is it possible to change somehow properties for the links between tables?
We have about 2000 reports and we should change most of the links, it would be very convenient to write short program to do this instead of destroying couple mouses and wrists etc...
Currently we are using VB6 and RDC to work with reports but we are open for all ideas to solve this problem we have.
Thanks in advance for any help!
Timo

Hi Timo,
Unless you know exactly how all are going to change exactly it may be easier to hire a student to this for you.
Here's a bit of code that should get you going, it's old but should work for you also. You'll need to know what fields are mapped etc... It actually adds the tables at runtime and what you'll want to do is get your existing tables and links and save the info in an array.
Dim db As Database
Set db = rep.Database
Dim tables As ICRDatabaseTables
Set tables = db.tables
Dim desTable As ICRDatabaseTable
Dim path As String
Dim srcTable As ICRDatabaseTable
Dim subloc As String
' Add a table.
subloc = "Orders"
Set srcTable = tables.Add(subloc, CRDTRecurringFile, "crdb_ODBC.DLL", "MS SQL Tsvanfps01", "nwind", "vantech", "vantech", subloc)
' Add a table.
subloc = "Employees"
Set desTable = tables.Add(subloc, CRDTRecurringFile, "crdb_ODBC.DLL", "MS SQL Tsvanfps01", "nwind", "vantech", "vantech", subloc)
Dim links As ICRDatabaseLinks
Set links = db.links
Dim count As Long
count = links.count
Dim joinType As CRJoinType
Dim lookType As CRLookUpType
Dim pm As Boolean
Dim indexInUse As Integer
joinType = 5    ' set to Left Outer Join
lookType = 2
pm = False      ' used for Access tables
indexInUse = 0  ' used for Access tables
Dim vas As Variant
Dim vbs As Variant
vas = Array(2)  ' pointer to the field position in the source Table
vbs = Array(0)  ' pointer to the field position in the destination Table
Dim newdblink As ICRDatabaseLink
Set newdblink = links.Add(srcTable, desTable, vas, vbs, joinType, lookType, pm, indexInUse)
Have fun
Don

Similar Messages

  • InfoSet modelling - Link Maintenance between tables

    Hi
    I want to create an infoset between 2 DSO objects, we are using BI 7, and I am following the help from
    http://help.sap.com/saphelp_nw70/helpdata/EN/b1/713c3b35703079e10000000a114084/frameset.htm
    I have a couple of very simple questions
    This is what I have done so far
    In the AWB on the Modelling Tab, I have right clicked on the infoArea and selected the u201CCreate InfoSetu201D   then given a technical name etc and selected the 1st DSO
    Then I selected the u201CAdd infoprovideru201D icon and entered the technical name of the 2nd DSO.
    On Step 4 (of the above help link) I am not able to see the Link Maintenance Option or to define a link using a mouse.  Can someone please walk me through how we will go from here? i.e. where to find this option etc and if any help or how to guidesu2026
    Basically I need to make this infoset and perform an inner join on 4 info Objects common between the two DSOs.  Please walk me through the procedure and I will say thanks the SDN way.
    Regards
    Jack

    Basically the question was a simple one and I figured out the answer so I am posting it for future reference by someone else in the same situation...
    The Display mode was the problem here, i.e. the 1st time I tried to create the infoset I was asked about which display mode I wanted to use..
    InfoSet Maintenance Can Be Done in the Network (Data Flow Control) or in the Tree (Tree Control)
    While the Network Display Is Clearer, the Tree Display for ScreenReader is Readable and Thus More Suitable for the Visually Impaired..
    I was using the Hierarchy Display and hence could not see the Link maintenance Icon or use the Drag and Drop with a mouse functionality...
    To change the display mode, Right Click on the infoSet, Select Change and then on the Top of the screen menues, go to Settings and Choose Display... Here change the display to Data Flow control...   Go out of the maintenance screen and come back in and   Bobs your uncle

  • Changing Link Properties

    Hello! So I am trying to build a page with a CSS template from Project VII called Mercury, and am having a little difficulty (I'm new to this whole CSS business, since I'm actually migrating from iWeb!).
    I have changed the text I've selected into a hyperlink, and now am trying to change the link color and underlining; I've discovered the Page Properties selection on the Modify dropdown menu, and that worked great! However, it also changed the look of all of the links on the page, which isn't exactly what I wanted. What should I do here?
    Thanks a bunch!
    - Catboy. Meow!

    Define a set of pseudo classes for all your link states in your CSS.  (.foo = whatever you name you wish to use.)
    .foo a:link  {color: orange;}
    .foo a:visited {color: red;}
    .foo a:hover {color:green;}
    .foo a:active,
    .foo a:focus {color:yellow;}
    HTML:
    <a class="foo" href="some_link.html">Foo Link color</a>
    <a href="some_link.html">Default Link color</a>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Change link properties (Rename file name)

    Hi All,
    As usual, I am new to Acrobat Scripting, but I have a good knowledge in InDesign Scripting.
    I have project about changing the link attribute.
    What i want to do is, I have a book along with chapters, Now i want to rename all the chapter names. If i rename the file name then i want to change the pdf link also. The following code will work almost, but onething i want to rectify.
    var numLinks=0;
    var desFile='D:\\1.pdf';
    var b = this.getPageBox("Crop", 0);
    var l = this.getLinks(0, b);
    l[0].setAction("app.openDoc('" + desFile + "')", this);
    If you run this code using javascript, you get a link but the property is set as javascript. Here i want to set as open a file.
    If you know the solution, please reply.
    Sudar.

    Have you looked at the 'addLInk()' method in the Acrobat JS API?
    You could also look at using 'theGetURL()' or 'launchURL()' methods.

  • Div tags - changing link properties

    Hi,
    My page has two colors. In the top is the navigation and the
    links need to be white due to the dark background. I did not plan
    to use links in the body itself, but have been forced. The body
    color is #efe9d1 and my links need to be dark. I am trying to use a
    different style I named .bodylink to accomplish this. I have used a
    div tag, and I am having the following problems. On my design view
    of the page all my linked fonts are bold and white. When I view it
    in my browser the navigation fonts are not bold and the second link
    is correct. (note: in design view the body does not view correctly,
    but the navigation does)
    My script is attached.
    Please tell me what I am doing wrong.

    Read these -
    http://www.thepattysite.com/linkstyles1.cfm
    http://www.projectseven.com/tutorials/pseudoclasses/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Little Ricky Productions"
    <[email protected]> wrote in message
    news:fntbk0$qkm$[email protected]..
    > Hi,
    >
    > My page has two colors. In the top is the navigation and
    the links need
    > to be
    > white due to the dark background. I did not plan to use
    links in the body
    > itself, but have been forced. The body color is #efe9d1
    and my links need
    > to
    > be dark. I am trying to use a different style I named
    .bodylink to
    > accomplish
    > this. I have used a div tag, and I am having the
    following problems. On
    > my
    > design view of the page all my linked fonts are bold and
    white. When I
    > view it
    > in my browser the navigation fonts are not bold and the
    second link is
    > correct.
    > (note: in design view the body does not view correctly,
    but the navigation
    > does)
    >
    > My script is attached.
    >
    > Please tell me what I am doing wrong.
    >
    > a:link {
    > color: #FFFFFF;
    > text-decoration: none;
    > font-weight: bold;
    > font-family: Verdana, Arial, Helvetica, sans-serif;
    >
    > .bodyLink {
    > color: #a14e23;
    > text-decoration: none;
    > font-weight: bold;
    > font-family: Verdana, Arial, Helvetica, sans-serif;
    >
    > <tr>
    > <td align="left"
    valign="bottom"><div><p><a
    > href="mediavision.html" target="_blank"
    >
    class="bodyLink">Attendees&#8226;Articles&#8226;Videos</a></p></div></td>
    > </tr>
    >

  • Change link properties

    This question was posted in response to the following article: http://help.adobe.com/en_US/contribute/cs/using/WS5b3ccc516d4fbf351e63e3d1180fba3730-7cd1. html

    Can you please share the screenshot of the error message thrown?
    Is this happening with all the pages and links or only with a particular link? If this is happening with all the pages and links try clearing the Contribute preferences once.
    Refer to http://blogs.adobe.com/contribute/2011/11/launch-contribute-freshly-by-deleting-preference s.html
    Note: Removing preference is like a fresh installation. You have to reconnect to the sites.

  • Difference between Delta "Change Log" and "Active Table (Without Archive)"?

    In BI7.0 environment, we perform our Delta loads (the DTP settings under the Extraction tab, there is a field called Extraction Mode and it's value is selected as "Delta") every day among all our DSOs.
    There is a section called "Delta Init. Extraction From..." under the same tab in DTP, there are four radio buttons:
    Active Table (With Archive)
    Active Table (Without Archive)
    Archive (Full Extraction Only)
    Change Log
    Then what is the difference between "Change Log" and "Active Table (Without Archive)" if both Extraction Mode is "Delta" for two Delta loads?
    Thanks!

    Hi ,
    The new options SP16 has are:(Chk Note 1096771)
    Active Table (with Archive)
    The data is read from the active table and from the archive or from a near-line storage if one exists. You can choose this option even if there is no active data archiving process yet for the DataStore object.
    Active Table (Without Archive)
    The data is only read from the active table. If there is data in the archive or in a near-line storage at the time of extraction, this data is not extracted.
    Archive (Only Full Extraction)
    The data is only read from the archive or from a near-line storage. Data is not extracted from the active table.
    Change Log
    The data is read from the change log of the DataStore object.
    Delta will always be picked from change log table.Only during intialization you can choose between getting data from change log or active table.If you are doing the load first time and are initializzing delta in subsequent data targets, then pulling data from active table will get lesse volume of data then it would have got from change log table....All subsequent deltas will be picked up from the change log.  And when we need to reload data into the data target (which would be a full load) - we use active table.
    From change log : you can take below ones as targets
    1) Cube 2) DSO with Addition as the update for the Keyfigures
    From Active table: you can take below ones as targets
    1) Cube ,if and only if, the records are never changes in the source once after creation
    2) DSO with Addition as the update for the Keyfigures ,if and only if, the records are never changes in the source once after creation
    3) DSO with Overwrite as the update for the Keyfigures ( incase deletions is not happening in the source system)
    Pls check this link
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/47/e8c56ecd313c86e10000000a42189c/frameset.htm
    Regards,
    CSM Reddy

  • Switch Linked (xl source) Tables - behavior change Excel 2010 PP vs. Excel 2013 PP -- In 2013 all calcs of table are lost

    Situation:
    PowerPivot 2010 Model based on 10 linked tables (this tables are generated and refreshed as needed by SQL 2012 MDS Excel-AddIn)
    Unfortunately Excel MDS AddIn changes sometimes the tablename (case: MDS Add-In Filter changed, MDS Server changed). So after Change of tablename we have to fix the powerpivot link to this Excel tables in powerpivot to get powerpivot refresh working again
    Problem:
    With Excel 2010 PowerPivot this was possible without big Problems. As Long as table has identical structure one can Change/Switch the table in powerpivot Windows > Ribbon "Linked" Table > DropDown "Linked Table X" or during update
    via Dialog "Errors in Linked Table"
    After upgrading the solution to Excel 2013 this is not possible any more without loosing any column- or measure calcs defined for this table! :( Every time you Change the assigned Excel table for an existing linked powerpivot table..you
    get following Dialog:
    "You are changing the source of X to Excel table Y. Changing the source will remove all formatting, measures, KPIs, hierarchies, and other Settings applied to the table. Are you sure you want to to continute?"
    Does anyone found a Workaround for persisting existing calc of linked tables when changing the sourcetable (to another Excel table with same structure)??
    Dear MS, this is IMHO really a step backwards and blocks the migration of our existing Excel 2010 PowerPivot Solution? Should i create a connect entry for that?!
    Version-Info:
    2010 Version: 11.0.3000.0 (PP Ribbon>Settings)
    2013 Version: 11.0.2809.81 (Product version displayed for dll c:\program files\Microsoft Office\Office15\Addins\PowerPivot excel Add-In\PowerPivotExcelClientAddIn.dll)

    There is a very similar issue discussed here where i tried to show the different behavior in terms of linked tables in Excel/PowerPivot 2010 vs 2013
    http://social.technet.microsoft.com/Forums/en-US/8fd927f7-30fd-49b7-809c-cb1414955638/linked-tables-excel-2013-vs-2010-difference?forum=sqlkjpowerpivotforexcel
    maybe it helps you to understand the issue
    I assume that MDS creates a new table every time you refresh it thereby breaking the link to PowerPivot
    in case you only have calculated measure you may created a separate, independent linked table and define all calculated measures there
    this way they at least would not get removed
    hth,
    gerhard
    Gerhard Brueckl
    blogging @ http://blog.gbrueckl.at
    working @ http://www.pmOne.com

  • Link between table BSEG and BSET

    Helo All.
    Can you please tell me what is the link between tables BSEG and BSET in FICO?
    Regards

    Hi
    Please check below thread Ramesh answerd for same query
    Relation between RSEG Table and BSET Table
    Thanks,
    Syf

  • Link between tables

    Hi,
    how can I find the links between tables ?
    I remember it is possible by a trx to look at links between tables, the trx shows a flow chart
    with the link between all SAP tables.
    Best regards

    hi,
    goto SE11->enter the name of the table you want to find the link.
    for e.g EKKO. Press display .
    On  the application Table there is a button 'Graphic' (CTRLSHIFTF11). Press this button
    to get list of table which are linked .You see a screen with the list of all tables which are linked
    and on that screen when u press back u get a graphical flow chart box where u see all the tables
    and their link .They will be shown in green color.
    The below Step only works if you know some tables
    other way is u can do it with SQVI transaction.Its called as Quickviewer screen.Create a view
    by entering some name and press create .Its prompts for a dialog box and enter some title.
    Below there is a drop list in DATA Source tab Choose table join and press enter.
    Go to EDIT option in menu bar and enter the name of the table which u know. ADD similar tables
    and if there is any link it will be shown below.

  • How to find the link between tables  CRMD_ORDERADM_H and  BBP_PDORG ?

    HI,All
        By TCODE  BBP_PD,  I cann't find the link by GUID between tables CRMD_ORDERADM_H (Header) and  BBP_PDORG (Purchase Organization) ,  why?  how to find this link?
       thanks
      Jesse.

    Hello Jianxin,
    It depends on document category type.
    For Shopping Cart, no link exist between CRMD_ORDERADM_H and BBP_PDORG tables as purchasing organization is defined at item level.
    For Purchase Order, using BBP_PDORG-SET_GUID, you get PO header GUID (GUID_HI) in table CRMD_LINK where CRMD-LINK-GUID_SET = BBP_PDORG-SET_GUID.
    Regards.
    Laurent.

  • Link between tables BBP_PDACC and BBP_DET_ACCOUNT

    Hi All,
    I am creating a shopping cart using function module BBP_PD_SC_CREATE. I can determine a GL account based on product category using table BBP_DET_ACCOUNT. But there are some other account assignment details which this function module requires and based on existing shopping carts that are created, I found that they are stored in table BBP_PDACC. Is there any linkage between tables BBP_PDACC and BBP_DET_ACCOUNT.
    Any help or guidance will be really appreciated.
    Thanks,
    Ameet

    Hi Ameet,
    Yeah you need to provide other account assignment if your business process do require? For example if you choose account assignment category as "Cost center" then standard account assignment category set up require Cost Center and GL account to pass in this function module. Account assignment configuration you can verify in SPRO in Cross application basic settings --> Account Assignment --> Define Account assignment category.
    BBP_PDACC as i mentioned earlier gets populated when you will create Shopping cart as it will store shopping cart account information.
    Hope this helps.
    thank you
    Ritesh

  • How can we change the properties of a seeded item in OAF !!!

    Hi All Gurus!
    I have a seeded item (Button 'Apply') on an Add attachement page provided by Oracle in Self Service Web Module. Oracle documentation says this:
    If you want changes to the Attachments table or page to commit automatically, without requiring a user to select Apply in the base page, you can turn on "auto-commit" by setting the Automatic Save property to True for the attachmentLink, attachmentTable, or attachmentImage item.With "auto-commit" turned on, each action ("Add", "Update", "Detach") performed by the user in the Attachments table or page is automatically committed.
    Q1) How we can see the properties of the seeded items?
    Q2) How we can turn on the personalization pencil button of an item that is disabled by Oracle development team?
    Please let me know how we can achieve this through self-service personalization. Any light on this.
    Thanks in advance!
    John
    Message was edited by:
    jtom

    You donot need to do anything on the Add Attachment page. The autoCommit feature is exposed as a property on the Attachment bean. You need to extend the controller in the base page where the attachment Image, Link is present and get a handle to the attachmentBean and call setAutoCommit(true) which will enable automatic saving.Use personalizations to modify the controller class property on the base page. You can later choose to remove the Save button on base page using personalization.

  • How do you change the spacing between lines of text?

    using Dreamweaver 6 how do you change the spcing between lines of text. Not seeing it as a option in the page properties menu.

    Try CSS line-height property.
    Kenneth Kawamoto
    [link removed by moderator]

  • Line appearing between tables?

    A line is appearing between tables that I can't get rid of. I
    can't seem to make the tables touch. I took a screen of it; I don't
    want that line to be there in the white:
    http://aycu19.webshots.com/image/26338/2005650946393136015_th.jpg

    You have a mistake here -
    <td width="170" height="150" valign="top"
    class="sidebar_buttons"><a
    href="index.html" onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><a
    href="index.html" onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><a
    href="index.html" onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><img
    src="global/nav/homebar_norm.png" alt="Home" name="Home"
    width="130"
    height="30" border="0" id="Home"
    /></a></a></td>
    Note the nested <a> tags ----------------^^^^^^^^
    That's wrong. Each <a> tag must be properly terminated
    <td width="170" height="150" valign="top"
    class="sidebar_buttons"><a
    href="index.html" onmouseout="MM_swapImgRestore()"
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><img
    src="global/nav/homebar_norm.png" alt="Home" name="Home"
    width="130"
    height="30" border="0" id="Home" /></a></td>
    In fact, two of them were redundant, and I deleted them.
    Perhaps your line is coming from the spacer row at the bottom
    of the top
    table?
    <tr><td height="1"><img src="spacer.png"
    alt="" width="170" height="1"
    /></td><td><img src="spacer.png" alt=""
    width="530" height="1"
    /></td><td></td></tr>
    </table>
    Change this by removing the entire row -
    </table>
    and see what happens.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "mbaboy" <[email protected]> wrote in
    message
    news:[email protected]...
    > Ok, here's the code. I'm a n00b, so my code is very
    inefficient. I barely
    > know
    > how to read code, so I apoligize in advance if I gave
    you too much.
    > Basically
    > there is a table on top with two cells for the banner,
    and one below it
    > for the
    > sidebar with a few cells. The problem comes between the
    two tables. Thanks
    > a
    > lot.
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > <title>CoreFitness Personal Training</title>
    > <link href="styles.css" rel="stylesheet"
    type="text/css" />
    > <script type="text/javascript">
    > <!--
    > function MM_swapImgRestore() { //v3.0
    > var i,x,a=document.MM_sr;
    for(i=0;a&&i<a.length&&(x=a
    )&&x.oSrc;i++)
    > x.src=x.oSrc;
    > }
    > function MM_preloadImages() { //v3.0
    > var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new
    Array();
    > var i,j=d.MM_p.length,a=MM_preloadImages.arguments;
    for(i=0;
    > i<a.length;
    > i++)
    > if (a.indexOf("#")!=0){ d.MM_p[j]=new Image;
    > d.MM_p[j++].src=a
    > }
    >
    > function MM_findObj(n, d) { //v4.01
    > var p,i,x; if(!d) d=document;
    >
    if((p=n.indexOf("?"))>0&&parent.frames.length) {
    > d=parent.frames[n.substring(p+1)].document;
    n=n.substring(0,p);}
    > if(!(x=d[n])&&d.all) x=d.all[n]; for
    (i=0;!x&&i<d.forms.length;i++)
    > x=d.forms[n];
    >
    for(i=0;!x&&d.layers&&i<d.layers.length;i++)
    > x=MM_findObj(n,d.layers
    .document);
    > if(!x && d.getElementById)
    x=d.getElementById(n); return x;
    > }
    >
    > function MM_swapImage() { //v3.0
    > var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new
    Array;
    > for(i=0;i<(a.length-2);i+=3)
    > if ((x=MM_findObj(a))!=null){document.MM_sr[j++]=x;
    if(!x.oSrc)
    > x.oSrc=x.src; x.src=a[i+2];}
    > }
    >
    > //-->
    > </script>
    > </head>
    >
    > <body
    >
    onload="MM_preloadImages('global/nav/homebar_rollover.png','global/nav/about_rol
    >
    lover.png','global/nav/contact_rollover.png','global/nav/trainers_rollover.png')
    > "><table width="100%" border="0" cellpadding="0"
    cellspacing="0"
    > class="banner">
    > <!--DWLayoutTable-->
    > <tr>
    > <td width="170" height="100" valign="top"
    class="sidebar_topend"><img
    > src="global/banner/logo_left.png" alt="CoreFitness"
    width="170"
    > height="100"
    > /></td>
    > <td width="530" valign="top"
    bgcolor="#6600FF"><img
    > src="global/banner/logo_right.png" alt="CoreFitness"
    width="530"
    > height="100"
    > /></td>
    > <td width="100%"
    valign="top"><!--DWLayoutEmptyCell--> </td>
    > </tr><tr><td height="1"><img
    src="spacer.png" alt="" width="170"
    > height="1"
    > /></td><td><img src="spacer.png"
    alt="" width="530" height="1"
    > /></td><td></td></tr>
    > </table>
    > <table width="170" border="0" cellpadding="0"
    cellspacing="0"
    > class="sidebar">
    > <!--DWLayoutTable-->
    > <tr>
    > <td width="170" height="150" valign="top"
    class="sidebar_buttons"><a
    > href="index.html" onmouseout="MM_swapImgRestore()"
    >
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><a
    > href="index.html" onmouseout="MM_swapImgRestore()"
    >
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><a
    > href="index.html" onmouseout="MM_swapImgRestore()"
    >
    onmouseover="MM_swapImage('Home','','global/nav/homebar_rollover.png',1)"><img
    > src="global/nav/homebar_norm.png" alt="Home" name="Home"
    width="130"
    > height="30" border="0" id="Home"
    /></a></a></td>
    > </tr>
    > <tr>
    > <td height="30" valign="top"
    class="sidebar_buttons"><a href="#"
    > onmouseout="MM_swapImgRestore()"
    >
    onmouseover="MM_swapImage('About','','global/nav/about_rollover.png',1)"><img
    > src="global/nav/about_norm.png" alt="About" name="About"
    width="130"
    > height="30" border="0" id="About"
    /></a></td>
    > </tr>
    > <tr>
    > <td height="30" valign="top"
    class="sidebar_buttons"><a href="#"
    > onmouseout="MM_swapImgRestore()"
    >
    onmouseover="MM_swapImage('Trainers','','global/nav/trainers_rollover.png',1)"><
    > img src="global/nav/trainers_norm.png" alt="Trainers"
    name="Trainers"
    > width="130" height="30" border="0" id="Trainers"
    /></a></td>
    > </tr>
    > <tr>
    > <td height="31" valign="top"
    class="sidebar_buttons"><a href="#"
    > onmouseout="MM_swapImgRestore()"
    >
    onmouseover="MM_swapImage('Contact','','global/nav/contact_rollover.png',1)"><im
    > g src="global/nav/contact_norm.png" name="Contact"
    width="130" height="30"
    > border="0" id="Contact" /></a></td>
    > </tr>
    > <tr>
    > <td height="300"
    class="sidebar_buttons"> </td>
    > </tr>
    > </table>
    > </body>
    > </html>
    >

Maybe you are looking for