Jump to content

FantomOptik

Members
  • Posts

    22
  • Joined

  • Last visited

Everything posted by FantomOptik

  1. I have a web development client that is interested in doing the following:He would like to have Video Consulting via a messenger program (or if there is some spectacular code that would achieve this).He wants to charge by the hour.The client would go to his site, go through a checkout process (they would initially pay for one hour).Once the checkout process is complete, they would then be able to connect to him via video conference.If they go over the hour, then he would like to be able to charge them the extra amount.Does anyone have any suggestions as to where I might start looking for something to accomplish this?Thanks in advance!
  2. Here is what I use for my sites:This goes in the header <link rel="stylesheet" type="text/css" href="css.css" /><!--[if lte IE 6.0]> <link rel="stylesheet" type="text/css" href="cssIE.css" /><![endif]--><!--[if IE 7]> <link rel="stylesheet" type="text/css" href="cssIE7.css" /><![endif]--> The first one "css.css" is for FFThe second one "cssIE.css" is for IE6 or earlierThe third one "cssIE7.css" is for IE7Hope this helps!
  3. CSS for Div in question: #leftcontent { position:absolute; background:#ffffff; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; left:0px; top:137px; height:auto; width:140px; border:1px solid #ffcc00; } HTML: <div id="leftcontent"><p><img id="imgmembers" src="images/membersonly.jpg" alt="Members Only Section Coming Soon!" width="120" height="40" border="0" /></p><p><a title="Learn about the Watchdog Program" href="#" target="_blank"><img src="images/tiawatchdog.jpg" alt="Learn about the Watchdog Program" width="120" height="40" border="0" /></a></p> <p><a title="Education for 3PL's" href="#"><img src="images/3pleducation.jpg" alt="Education for 3PL's" width="120" height="40" border="0" /></a></p><p><a title="Visit the p3 Program Website" href="#" target="_blank"> <img src="images/p3program.jpg" alt="Visit the p3 Program Website" width="120" height="40" border="0" /></a></p><p><a title="Learn more about the FIATA" href="#" target="_blank"><img src="images/tiaadvantage.jpg" alt="Learn more about the FIATA" width="120" height="40" border="0" /></a></p><p><a title="Visit the AMTEX website" href="#" target="_blank"><img src="images/amtex.jpg" alt="Visit the AMTEX Website" width="120" height="40" border="0" /></a></p><p><a title="View current and archived TIA press releases" href="#"><img src="images/pressreleases.jpg" alt="View current and archived TIA press releases" width="120" height="40" border="0" /></a></p><p><img src="ads/ad.jpg" alt="TIA Banner Advertising Program" width="120" height="300" border="0" /></p> <p><a title="#" href="#" target="_blank"><img src="images/tms.jpg" alt="#" width="120" height="80" border="0" /></a></p><p align="center"><a href="#" title="View the TIA Privacy Statement">Privacy Statement</a></p><p align="center"><a href="#" title="Transportation Intermediaries Association">www.tianet.org</a></p></div>
  4. Thanks, I tried that as well and it did not help any.Thanks to both of you for your help and info. I just really have no clue why FF would not show it like all other browsers are.
  5. I have verified that I have images turned on.I completely disabled my ad blocker, and it still will not show up.I even removed the link aspect from it, so that it would be a static image and it still will not show up.
  6. Hello Everyone.I am having an issue where a simple image based hyperlink is showing up correctly in IE6 and IE7, but in FF, the images do not show up at all. I have verified that everything in my css is compliant and validates. Is there some sort of bug or issue with FF handling png files?Here is the code for the hyperlink: <p><a title="TIA Banner Advertising Program" href="Default.aspx"><img src="ads/ad.jpg" alt="TIA Banner Advertising Program" width="120" height="300" border="0" /></a></p> This is the exact same code that is used by all browsers.Can anyone see why this wouldn't show up in FF?Any help would be greatly appreciated.
  7. When adding the other statement for IE7, would it go in before the <![endif]--> statement?How would it look?
  8. Well, the day has finally come. IE7 has been released and we are already seeing CSS issues with existing sites.Here is my dilemma:For most of my sites, I have created seperate CSS files for Mozilla browsers and for IE. Now that IE7 is out, this isn't working.This is the code that I used for browser specific CSS:<head><link rel="stylesheet" type="text/css" href="tms.css" /><!--[if IE]> <link rel="stylesheet" type="text/css" href="tmsIE.css" /><![endif]--></head>Now, up until today, this worked beautifully for me. I am wondering if there is a way, either by a similar code as the one above, or maybe a javascript file that would allow me to have specific CSS files for IE6, IE7 and Mozilla. Essentially, can I add another 'IF' statement to the above code and have it be specific to IE7?Thank you in advance for your help.UPDATE - I have figured out how to fix the issue and it was simply adjusting the if IE statement to read<!--[if IE 6]>This now reads as: if the browser is IE 6 or lower, use the IE.css. If the browser is anything else, including IE7, then use the regular CSS.
  9. First off, I just wanted to say that this board has been an amazing wealth of knowledge.I have been tweaking and trying to get this page to work correctly in FF for a few days and am ready to pull what hair I have left out.I have a 3 column layout that is wrapped in a container and I want all three coloumns to be the same height. I can't seem to get the container div to encompass everything on a basic page where the content of the middle (#main) div does not reach the bottom. When this happens, the container stays short of the columns. On the pages where the main content reaches below the container, it works perfectly and all three columns elongate to the same size as the main div.Here is some code to help explain things (I hope): body { font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#475868; margin:1px; padding:0px;}#frame { position:relative; width:758px; margin:auto; border:1px solid #475868;}#top { position:relative; width:748px; height:90px; background-image:url(images/logo.jpg); padding:5px;}#banner { position:relative; text-align:center; font-family:Arial, Helvetica, sans-serif; font-size:12px; font-weight:bold; width:748px; height:15px; background:#475868; color:#ffffff; padding:5px;}#leftcontent { position:absolute; left:0px; top:130px; width:100px; background:#ffffff; color:#475868; padding:10px 10px 0px 10px; margin:0px;}#main { position:relative; left:115px; top:0px; color:#475868; width:500px; background:#f5f5f5; border-left:1px dotted #475868; border-right:1px dotted #475868; padding:10px; margin:0px;}#rightcontent { position:absolute; right:0px; top:130px; width:100px; background:#ffffff; color:#475868; text-align:center; padding:0px 10px 10px 10px; margin:0px;} And here some html: <body> <div id="frame"> <div id="top"></div> <div id="banner"></div> <div id="leftcontent"> Content in this section is static and the size of the div will not change. Nav Link<br /> Nav Link<br /> Nav Link<br /> Nav Link<br /> Nav Link<br /> Nav Link<br /> Nav Link<br /><br /> <hr /> A form for login to a web based application goes here <hr /> <p align="center">Proud Member of:<br /> Some logo graphics with links would go here</p> </div> <div id="main"> Main content goes here. This content is dynamic and amount of data in this div will be updated and changed constantly </div> <div id="rightcontent"> Content in this section is static and the size of the div will not change. </div> </div> I hope this explains the issue and I am hoping that someone will be able to look at the css and tell me what I am doing wrong.FYI, I am using a simple <link rel="stylesheet" type="text/css" href="tms.css" /><!--[if IE]> <link rel="stylesheet" type="text/css" href="tmsIE.css" /><![endif]--> to switch css files for IE.
  10. Thanks for the information. I will spend some time looking at SSI's.Thanks again!!!
  11. Basically, it is a Calendar of Events section that will have the 3, 4, 5 etc. items that will hyperlink to a page. Those hyperlinks will be changed probably once a month. I was hoping that I could somehow reference an external file so that the client only has to update that external file, and not every single page that the scroller is on.
  12. I have a scrollable content area on my site.Here is the code: <div style="width:136px;height:150px;text-align:left;overflow:auto;padding:0px"><p><a class="nav" href="annualconvention.htm" title="The TIA 2006 Annual Convention and Trade Show">TIA 2006 Convention</a></p><p><a class="nav" href="3plu.htm" title="Temperature Control Transport">Temperature Control Transport<br>May 15, 2006</a></p><p><a class="nav" href="3plu.htm" title="Partnership Selling in the Supply Chain">Partnership Selling in the Supply Chain<br>March 27, 2006</a></p><p><a class="nav" href="#" title="3rd Party Law Seminar">3rd Party Law Seminar<br>April 5, 2006</a></p></div> This site that I am building is going to have many, many pages. I would like to be able to have a simple call to an external html file for updating of scrollable content area (sort of like an include). I am clueless at this time as to if this is possible without resorting to Javascript.Is something like this even possible (keeping in mind that my width/height must remain as it currently is.Any help would be greatly appreciated!!!!
  13. Thank you again for all of your help.That horizontal menu was created in Sothink's DHTML builder. I will look into something else. Really weird though, that menu did work in FF a few days ago, but I have been tweaking the code so much that I could have easily missed something.Thanks Again!!!!!
  14. Hey, I really appreciate the help.Nothing with this code has ever worked correctly in FF. Actually, it has never really worked correctly in any browser at this point.Maybe I am being too hopefull with making this type of site work in CSS.I think that biggest issue that I am having at this point is how different divs are placed for proper presentation through the browser. I understand that concepts of float and positioning, but I just can't seem to make it work.The big issue is height of divs. I have read several posts about it and no one really seems to have the correct code. It appears that it is a browser based issue (certain browsers applying css differently than others).At this point (and please, nobody shoot me), I feel that I should concentrate on IE, as the industry that the site is used for is very archaic and most of those folks who would be visiting will be on IE.I had also planned on putting a footer at the bottom that would stay static to the bottom, but after playing with some other code and playing around with footers, leftnav's etc., it seems that I will not be able to get that to work either. Could it be that CSS is too much for me? Am I destined to live a life of tables nested within tables within tables of which I shall never escape??????Again, I appreciate all of the time and effort for the help. I will make those changes that you displayed in your last reply and hopefully that will work and will spark something in my brain to be able to understand everything.I shall return!!!!!!!
  15. Wow! Thanks for the reply. I made all of the changes that you suggested, but now when it is viewed in firefox, it floats everything to the left, thereby making the centercontent drop down to the bottom of the left content and the same with rightcontent. When viewed in IE, it is perfect. Is this something that simply won't work in Firefox?Thanks again for taking the time to help!!!Development Site UpdatedUpdated CSS: body { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; margin:0px 0px 0px 0px; padding:0px;; background: #1E3276} .container { width:955px; margin:auto; } #banner { background: #1E3276 font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; font-color:#ffffff; height:75px; voice-family: "\"}\""; voice-family: inherit; height:74px; border:0px 1px 1px 1px solid #FFCC00; } html>body #banner { height:74px; } #horiznav { top:40px; height:40px; voice-family: "\"}\""; voice-family: inherit; height:39px; } #ticker { top:114px; left:20px; height:20px; width:953px; voice-family: "\"}\""; voice-family: inherit; height:20px; border:1px solid #FFCC00; } #leftcontent { background: #FFFFFF; float:left; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; left:23px; top:137px; width:140px; height:100%; border:1px solid #FFCC00; } #centercontent { background: #FFFFFF; width:669px; float:left; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; top:136px; height:100%; border:1px solid #FFCC00; voice-family: "\"}\""; voice-family: inherit; float:left; } html>body #centercontent { margin-left: 143px; margin-right:143px; } #rightcontent { float:left; background: #FFFFFF; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; right:22px; top:137px; width:140px; height:100%; border:1px solid #FFCC00; } p,h1,h2,h3,h4,h5,h6,hr,pre { margin:0px 10px 10px 10px; } h1 { font-size:14px; font-weight:bold; color: #1E3276; padding-top:10px; text-decoration:underline; } h2 { font-size:12px; font-weight:bold; color: #1E3276; padding-top:10px; text-decoration:none; } h3 { font-size:10px; font-weight:bold; color: #1E3276; padding-top:10px; text-decoration:none; } h4 { font-size:9px; font-weight:bold; color: #1E3276; padding-top:1px; text-align:center; text-decoration:none; } h5 { font-size:8px; font-weight:bold; color: #1E3276; padding-top:10px; padding-left:10px; text-decoration:none; } h6 { font-size:6px; font-weight:bold; color: #1E3276; padding-top:10px; text-decoration:none; } hr { color: #1e3276; background: #1e3276; height: 2px; border: none; } #imgfloatleft { float:left } #imgfloatrightA { float:right; } #imgmembers { padding:10px 0px 0px 0px; } #imgfloatright { float:right; padding:0px; } #banner h1 { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:24px; color:#ffffff; text-decoration:underline; padding:10px 10px 0px 10px; margin:0px; } #rightcontent p { font-size:10px } Updated HTML: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"><html><head><title>Transportation Intermediaries Association (TIA)</title><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/><script type="text/javascript" language="JavaScript1.2" src="stm31.js"></script><link rel="stylesheet" type="text/css" href="tia.css"/></head><body bgcolor="#1E3276"><div class="container"><div id="banner"><a title="Transportation Intermediaries Association (TIA)" href="index.htm"><img id="imgfloatleft" src="images/tiacornerlogo.jpg" alt="Transportation Intermediaries Association (TIA)" width="84" height="75" border="0" /></a><img id="imgfloatright" src="images/trucks.jpg" alt="Transportation Intermediaries Association (TIA)" width="125" height="74" /><h1>Transportation Intermediaries Association (TIA)</h1><font color="#FFFFFF">The association of third party logistics companies, including brokers, forwarders, intermodal marketing companies,<br>NVOCC's, air freight forwarders and freight audit & payment companies.</font></div><div id="horiznav" align="center"><script type="text/javascript" language="JavaScript1.2"><!--stm_bm(["menu267d",430,"","blank.gif",0,"","",0,0,250,0,1000,1,0,0,"","",0],this);stm_bp("p0",[0,4,0,0,4,5,0,7,100,"",-2,"",-2,90,0,0,"#000000","#1d3175","",3,1,1,"#ffcc00"]);stm_ai("p0i0",[0,"About TIA","","",-1,-1,0,"","_self","","","","",0,0,0,"arrow_r.gif","arrow_r.gif",7,7,0,0,1,"#ffffff",0,"#ffcc00",0,"","",3,3,1,1,"#ffcc00","#ffffff","#1e3276","#1e3276","8pt Verdana","8pt Verdana",0,0]);stm_bp("p1",[1,4,0,0,4,4,0,0,100,"",-2,"",-2,90,0,0,"#000000","#1e3276","",3,1,1,"#1e3276"]);stm_aix("p1i0","p0i0",[0,"Mission Statement","","",-1,-1,0,"","_self","","","","",0,0,0,"","",0,0]);stm_aix("p1i1","p1i0",[0,"Value Statement"]);stm_aix("p1i2","p1i0",[0,"Vision Statement"]);stm_aix("p1i3","p1i0",[0,"Code of Ethics"]);stm_aix("p1i4","p1i0",[0,"Membership Description"]);stm_aix("p1i5","p1i0",[0,"Board of Directors"]);stm_aix("p1i6","p1i0",[0,"Staff"]);stm_ep();stm_aix("p0i1","p0i0",[0,"Find a TIA Member"]);stm_bpx("p2","p1",[]);stm_aix("p2i0","p1i0",[0,"TIA Access Searchable Online Directory"]);stm_ep();stm_aix("p0i2","p0i0",[0,"TIA Membership"]);stm_bpx("p3","p1",[]);stm_aix("p3i0","p1i0",[0,"Description of Eligibility/Application Process"]);stm_aix("p3i1","p1i0",[0,"Membership Application"]);stm_aix("p3i2","p1i0",[0,"2006 Dues"]);stm_aix("p3i3","p1i0",[0,"Review Board Procedures"]);stm_ep();stm_aix("p0i3","p0i0",[0,"Information"]);stm_bpx("p4","p1",[]);stm_aix("p4i0","p1i0",[0,"How to qualify a broker"]);stm_aix("p4i1","p1i0",[0,"Understanding your credit"]);stm_aix("p4i2","p1i0",[0,"Complete list of topics"]);stm_ep();stm_aix("p0i4","p0i0",[0,"TIA Store"]);stm_bpx("p5","p1",[]);stm_aix("p5i0","p1i0",[0,"Business 8th Edition"]);stm_aix("p5i1","p1i0",[0,"Traffic Management Planning, Operations & Control"]);stm_aix("p5i2","p1i0",[0,"Transportation Brokers Manual"]);stm_aix("p5i3","p1i0",[0,"Transportation, Logistics and the Law (Second Edition)"]);stm_aix("p5i4","p1i0",[0,"TIA 2006 New Broker Kit"]);stm_aix("p5i5","p1i0",[0,"Compensation in the Brokerage Industry, 2002"]);stm_ep();stm_aix("p0i5","p0i0",[0,"TIA Publications"]);stm_bpx("p6","p1",[]);stm_aix("p6i0","p1i0",[0,"Logistics Journal"]);stm_aix("p6i1","p1i0",[0,"TIA Weekly"]);stm_aix("p6i2","p1i0",[0,"Advertising Opportunities"]);stm_ep();stm_aix("p0i6","p1i0",[0,"Contact TIA"]);stm_aix("p0i7","p1i0",[0,"Directions"]);stm_aix("p0i8","p1i0",[0,"Site Map"]);stm_aix("p0i9","p1i0",[0,"Search"]);stm_ep();stm_em();//--></script></div><div id="ticker"><script language="JavaScript1.2" type="text/javascript">var marqueewidth="953px"var marqueeheight="20px"var marqueespeed=2var marqueebgcolor="#ffffff"var pauseit=1var marqueecontent='<nobr><font face="verdana">----- Latest News Headlines Scroll Here ----- ----- Latest News Headlines Scroll Here ----- ----- Latest News Headlines Scroll Here -----</font></nobr>'marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NSvar copyspeed=marqueespeedvar pausespeed=(pauseit==0)? copyspeed: 0var iedom=document.all||document.getElementByIdif (iedom)document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+marqueecontent+'</span>')var actualwidth=''var cross_marquee, ns_marqueefunction populate(){if (iedom){cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarqueecross_marquee.style.left=parseInt(marqueewidth)+8+"px"cross_marquee.innerHTML=marqueecontentactualwidth=document.all? temp.offsetWidth : document.getElementById("tem
  16. Been lurking around this forum for awhile now (have learned a ton from this place).I am currently working on a 3-column layout done in CSS.I have gotten the site to look exactly how I want it in IE, but when I view in Firefox, Netscape, etc., everything is screwed up.Can someone look at the site, and my codes and see if I have messed up something?Development SiteCSS: body { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; color:#1E3276; margin:0px 0px 0px 0px; padding:0px; } .container { width:955px; margin:auto; } #banner { background:#1E3276; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; color:#fff; height:75px; voice-family: "\"}\""; voice-family: inherit; height:74px; border-left:1px solid #FFCC00; border-top:1px solid #FFCC00; border-right:1px solid #FFCC00; } html>body #banner { height:74px; } #horiznav { background:#1E3276; top:40px; height:40px; voice-family: "\"}\""; voice-family: inherit; height:39px; } #ticker { background:#fff; top:114px; left:20px; height:14px; width:955px; voice-family: "\"}\""; voice-family: inherit; height:12px; border:1px solid #FFCC00; } #leftcontent { position: absolute; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; left:23px; top:137px; width:140px; height:100%; background:#fff; border:1px solid #FFCC00; } #centercontent { background:#fff; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; top:136px; margin-left: 163px; margin-right:163px; height:100%; border:1px solid #FFCC00; voice-family: "\"}\""; voice-family: inherit; margin-left: 165px; margin-right:165px; } html>body #centercontent { margin-left: 143px; margin-right:143px; } #rightcontent { position: absolute; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px; right:22px; top:137px; width:140px; height:100%; background:#fff; border:1px solid #FFCC00; } p,h1,h2,h3,h4,h5,h6,hr,pre { margin:0px 10px 10px 10px; } h1 { font-size:14px; font-weight:bold; color: #1E3276; padding-top:10px; text-decoration:underline; } h2 { font-size:12px; font-weight:bold; color: #1E3276; padding-top:10px; text-decoration:none; } h3 { font-size:10px; font-weight:bold; color: #1E3276; padding-top:10px; text-decoration:none; } h4 { font-size:9px; font-weight:bold; color: #1E3276; padding-top:1px; text-align:center; text-decoration:none; } h5 { font-size:8px; font-weight:bold; color: #1E3276; padding-top:10px; padding-left:10px; text-decoration:none; } h6 { font-size:6px; font-weight:bold; color: #1E3276; padding-top:10px; text-decoration:none; } hr { color: #1E3276; } #imgfloatcenter { float:center } #imgfloatleft { float:left } #imgfloatright { float:right; padding:0px; } #members { background:#ffcc00; } #banner h1 { font-family:Verdana, Arial, Helvetica, sans-serif; font-size:24px; color:#fff; text-decoration:underline; padding:10px 10px 0px 10px; margin:0px; } #rightcontent p { font-size:10px } HTML Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"><html><head><title>Transportation Intermediaries Association (TIA)</title><script type="text/javascript" language="JavaScript1.2" src="stm31.js"></script><link rel="stylesheet" type="text/css" href="tia.css"></head><body bgcolor="#1E3276"><div class="container"><div id="banner"><a title="Transportation Intermediaries Association (TIA)" href="index.htm"><img id="imgfloatleft" src="images/tiacornerlogo.jpg" alt="Transportation Intermediaries Association (TIA)" width="84" height="75" border="0" /></a><img id="imgfloatright" src="images/trucks.jpg" alt="Transportation Intermediaries Association (TIA)" width="125" height="74" /><h1>Transportation Intermediaries Association (TIA)</h1>The association of third party logistics companies, including brokers, forwarders, intermodal marketing companies,<br>NVOCC's, air freight forwarders and freight audit & payment companies.</div><div id="horiznav" align="center"><script type="text/javascript" language="JavaScript1.2"><!--stm_bm(["menu267d",430,"","blank.gif",0,"","",0,0,250,0,1000,1,0,0,"","",0],this);stm_bp("p0",[0,4,0,0,4,5,0,7,100,"",-2,"",-2,90,0,0,"#000000","#1d3175","",3,1,1,"#ffcc00"]);stm_ai("p0i0",[0,"About TIA","","",-1,-1,0,"","_self","","","","",0,0,0,"arrow_r.gif","arrow_r.gif",7,7,0,0,1,"#ffffff",0,"#ffcc00",0,"","",3,3,1,1,"#ffcc00","#ffffff","#1e3276","#1e3276","8pt Verdana","8pt Verdana",0,0]);stm_bp("p1",[1,4,0,0,4,4,0,0,100,"",-2,"",-2,90,0,0,"#000000","#1e3276","",3,1,1,"#1e3276"]);stm_aix("p1i0","p0i0",[0,"Mission Statement","","",-1,-1,0,"","_self","","","","",0,0,0,"","",0,0]);stm_aix("p1i1","p1i0",[0,"Value Statement"]);stm_aix("p1i2","p1i0",[0,"Vision Statement"]);stm_aix("p1i3","p1i0",[0,"Code of Ethics"]);stm_aix("p1i4","p1i0",[0,"Membership Description"]);stm_aix("p1i5","p1i0",[0,"Board of Directors"]);stm_aix("p1i6","p1i0",[0,"Staff"]);stm_ep();stm_aix("p0i1","p0i0",[0,"Find a TIA Member"]);stm_bpx("p2","p1",[]);stm_aix("p2i0","p1i0",[0,"Find a 3PL"]);stm_aix("p2i1","p1i0",[0,"Find a Vendor"]);stm_aix("p2i2","p1i0",[0,"Find a Broker"]);stm_aix("p2i3","p1i0",[0,"3PL Sales"]);stm_aix("p2i4","p1i0",[0,"Bond Center"]);stm_ep();stm_aix("p0i2","p0i0",[0,"TIA Membership"]);stm_bpx("p3","p1",[]);stm_aix("p3i0","p1i0",[0,"Description of Eligibility/Application Process"]);stm_aix("p3i1","p1i0",[0,"Membership Application"]);stm_aix("p3i2","p1i0",[0,"2006 Dues"]);stm_aix("p3i3","p1i0",[0,"Review Board Procedures"]);stm_ep();stm_aix("p0i3","p0i0",[0,"Information"]);stm_bpx("p4","p1",[]);stm_aix("p4i0","p1i0",[0,"How to qualify a broker"]);stm_aix("p4i1","p1i0",[0,"Understanding your credit"]);stm_aix("p4i2","p1i0",[0,"Complete list of topics"]);stm_ep();stm_aix("p0i4","p0i0",[0,"TIA Store"]);stm_bpx("p5","p1",[]);stm_aix("p5i0","p1i0",[0,"Business 8th Edition"]);stm_aix("p5i1","p1i0",[0,"Traffic Management Planning, Operations & Control"]);stm_aix("p5i2","p1i0",[0,"Transportation Brokers Manual"]);stm_aix("p5i3","p1i0",[0,"Transportation, Logistics and the Law (Second Edition)"]);stm_aix("p5i4","p1i0",[0,"TIA 2006 New Broker Kit"]);stm_aix("p5i5","p1i0",[0,"Compensation in the Brokerage Industry, 2002"]);stm_ep();stm_aix("p0i5","p0i0",[0,"TIA Publications"]);stm_bpx("p6","p1",[]);stm_aix("p6i0","p1i0",[0,"Logistics Journal"]);stm_aix("p6i1","p1i0",[0,"TIA Weekly"]);stm_aix("p6i2","p1i0",[0,"Advertising Opportunities"]);stm_ep();stm_aix("p0i6","p1i0",[0,"Contact TIA"]);stm_aix("p0i7","p1i0",[0,"Directions"]);stm_aix("p0i8","p1i0",[0,"Site Map"]);stm_aix("p0i9","p1i0",[0,"Search"]);stm_ep();stm_em();//--></script></div><div id="ticker"><script language="JavaScript1.2">var marqueewidth="954px"var marqueeheight="20px"var marqueespeed=2var marqueebgcolor="#ffffff"var pauseit=1var marqueecontent='<nobr><font face="verdana"><----- Latest News Headlines Scroll Here -----> <----- Latest News Headlines Scroll Here -----> <----- Latest News Headlines Scroll Here -----></font></nobr>'marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NSvar copyspeed=marqueespeedvar pausespeed=(pauseit==0)? copyspeed: 0var iedom=document.all||document.getElementByIdif (iedom)document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+marqueecontent+'</span>')var actualwidth=''var cross_marquee, ns_marqueefunction populate(){if (iedom){cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarqueecross_marquee.style.left=parseInt(marqueewidth)+8+"px"cross_marquee.innerHTML=marqueecontentactualwidth=document.all? temp.offsetWidth : document.getElementById("temp").offsetWidth}else if (document.layers){ns_marquee
×
×
  • Create New...