Help - Search - Members - Calendar
Full Version: CSS Not Working!
HTMLHelp Forums > Web Authoring > Graphics, Flash and Multimedia
utpomchik
Can someone help me figure this out...I'm relatively new when it comes to using CSS.

It's weird... when I tested the site on my computer it worked and when I published the site it looked perfect on my computer (laptop).

However, when I looked at the site on my desktop none of the CSS features were working and all my text styles and formats were all out of wack!

Here is the code below...I took the site down because it did not look good. My CSS file is "mm_health_nutr.css" if you need that...any help or suggestions would be MUCH APPRECIATED!! Sorry to paste ALL the code, I'm just not sure what is needed! Thanks in advance! excl.gif




CODE

<!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">
<!-- DW6 -->
<head>
<style type="text/css">







/*Example CSS for the two demo scrollers*/

#pscroller1{
width: 185px;
height: 140px;
border: 0px solid grey;
padding: 3px;
background-color: white;
text-align: left;
font-color: black;
}

#pscroller2{
width: 350px;
height: 20px;
border: 0px solid black;
padding: 2px;
}

#pscroller2 a{
text-decoration: none;
}

.someclass{ //class to apply to your scroller(s) if desired
}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}

</style>

<script type="text/javascript">

/*Example message arrays for the two demo scrollers*/

var pausecontent=new Array()
pausecontent[0]= "...Under Jon's guidance I am now averaging 320-330 yards off the tee with my driver (up from 300), but more importantly I'm hitting more fairways than ever before!...<br> <b>-Jordan Kenter, PGA</b><br><br> "
pausecontent[1]= "...I have worked with some of the Top 100 Instructors in my career, but it is Jon Manack’s communication skills, knowledge and teaching techniques that have helped me...<br> <b>-Dede Cusimano, LPGA </b><br><br>"
pausecontent[2]="...I would recommend Jon Manack to a Tour Player and to a beginning golfer... <br> <b>Shane Ponchot, PGA</b><br><br>"

var pausecontent2=new Array()
pausecontent2[0]='<a href="http://www.news.com">News.com: Technology and business reports</a>'
pausecontent2[1]='<a href="http://www.cnn.com">CNN: Headline and breaking news 24/7</a>'
pausecontent2[2]='<a href="http://news.bbc.co.uk">BBC News: UK and international news</a>'

</script>

<script type="text/javascript">

/***********************************************
* Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

function pausescroller(content, divId, divClass, delay){
this.content=content //message array content
this.tickerid=divId //ID of ticker div to display information
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is)
this.hiddendivpointer=1 //index of message array for hidden div
document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>')
var scrollerinstance=this
if (window.addEventListener) //run onload in DOM2 browsers
window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
else if (window.attachEvent) //run onload in IE5.5+
window.attachEvent("onload", function(){scrollerinstance.initialize()})
else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec
setTimeout(function(){scrollerinstance.initialize()}, 500)
}

// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------

pausescroller.prototype.initialize=function(){
this.tickerdiv=document.getElementById(this.tickerid)
this.visiblediv=document.getElementById(this.tickerid+"1")
this.hiddendiv=document.getElementById(this.tickerid+"2")
this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv))
//set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)
this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.visibility="visible"
var scrollerinstance=this
document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
if (window.attachEvent) //Clean up loose references in IE
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}


// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------

pausescroller.prototype.animateup=function(){
var scrollerinstance=this
if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
setTimeout(function(){scrollerinstance.animateup()}, 50)
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}

// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------

pausescroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}

pausescroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}

// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------

pausescroller.prototype.setmessage=function(){
var scrollerinstance=this
if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it)
setTimeout(function(){scrollerinstance.setmessage()}, 100)
else{
var i=this.hiddendivpointer
var ceiling=this.content.length
this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
this.animateup()
}
}

pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) //if DOM2
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0
}

</script>

<!-- Copyright 2005 Macromedia, Inc. All rights reserved. -->
<body bgcolor="#D5EDB3"
<!-- Copyright 2005 Macromedia, Inc. All rights reserved. -->
<title>Jon Manack Golf Instruction :: LEAP Golf™</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="mm_health_nutr.css" type="text/css" />
<script language="JavaScript" type="text/javascript">
//--------------- LOCALIZEABLE GLOBALS ---------------
var d=new Date();
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
//Ensure correct for language. English is "January 1, 2004"
var TODAY = monthname[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();
//--------------- END LOCALIZEABLE ---------------

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[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
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[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].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[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
</script>
<script src="AC_RunActiveContent.js" type="text/javascript"></script>
<style type="text/css" media="screen">




@import url("main_menu.css");




@import url("main_menu.css");




@import url("main_menu.css");




@import url("main_menu.css");




@import url("main_menu.css");




@import url("main_menu.css");




@import url("images/main_menu.css");




@import url("images/main_menu.css");
td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}
.style1 {
color: #68B805;
font-style: italic;
font-weight: bold;
}
.style2 {font-size: 9px}
.style3 {color: #000000}
.style6 {color: #68B805; font-style: italic; font-weight: bold; font-size: 14px; }
</style>
<script language="JavaScript1.2" type="text/javascript" src="images/mm_css_menu.js"></script>
</head>
<body bgcolor="#F4FFE4" onload="MM_preloadImages('images/main_menu_r2_c1_f2.jpg','images/main_menu_r2_c3_f2.jpg','images/main_menu_r2_c5_f2.jpg','images/main_menu_r2_c7_f2.jpg','images/main_menu_r2_c9_f2.jpg','images/main_menu_r2_c11_f2.jpg','images/main_menu_r2_c13_f2.jpg','images/main_menu_r2_c15_f2.jpg','images/morebtn_f2.gif','images/button main menu_r1_c2_f2.gif','images/button main menu_r1_c3_f2.gif','images/button main menu_r1_c4_f2.gif','images/button main menu_r1_c5_f2.gif','images/button main menu_r1_c6_f2.gif','images/button main menu_r1_c7_f2.gif','images/bottom ads_r1_c2_f2.gif','images/bottom ads_r1_c3_f2.gif','images/bottom ads_r1_c5_f2.gif','images/bottom ads_r1_c7_f2.gif','images/bottom ads_r1_c9_f2.gif','images/bottom ads_r1_c11_f2.gif','images/bklssnbtn(small)_f2.jpg','images/gcbtn(small)_f2.jpg','images/clinicbtn(small)_f2.jpg')">
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#99CC66">
<tr height="2" bgcolor="#99CC66"><td height="2"></td></tr>
<tr align="center" bgcolor="#ffffff">

<td width="1" bgcolor="#99CC66">&nbsp;</td> <td align="left" width="399"><img src="images/Leap Golf Logo no bg.png" /></td>
<td align="right" bgcolor="#FFFFFF"><script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','385','height','150','src','header_flash','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','header_flash' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="385" height="150">
<param name="movie" value="header_flash.swf" />
<param name="quality" value="high" />
<embed src="header_flash.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="385" height="150"></embed>
</object>
</noscript></div></td>
<td width="1" bgcolor="#99CC66"></td>
</tr></table>
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td colspan="6" bgcolor="#99CC66" background="mm_dashed_line.gif"><img src="mm_dashed_line.gif" alt="line decor" width="4" height="3" border="0" /></td>
</tr>
<tr align="left" bgcolor="#99CC66">
<td colspan="6" valign="top" bgcolor="#99CC66"><table border="0" cellpadding="0" cellspacing="0" width="1000">
<!-- fwtable fwsrc="button main menu.png" fwpage="Page 1" fwbase="button main menu.gif" fwstyle="Dreamweaver" fwdocid = "619878150" fwnested="0" -->
<tr>
<td><img src="images/spacer.gif" alt="" name="undefined_2" width="58" height="1" border="0" id="undefined_2" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_2" width="147" height="1" border="0" id="undefined_2" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_2" width="144" height="1" border="0" id="undefined_2" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_2" width="148" height="1" border="0" id="undefined_2" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_2" width="142" height="1" border="0" id="undefined_2" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_2" width="145" height="1" border="0" id="undefined_2" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_2" width="161" height="1" border="0" id="undefined_2" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_2" width="55" height="1" border="0" id="undefined_2" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_2" width="1" height="1" border="0" id="undefined_2" /></td>
</tr>
<tr>
<td><img name="buttonmainmenu_r1_c1" src="images/button%20main%20menu_r1_c1.gif" width="58" height="50" border="0" id="buttonmainmenu_r1_c1" alt="" /></td>
<td><a href="http://www.jonmanack.com" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('buttonmainmenu_r1_c2','','images/button main menu_r1_c2_f2.gif',1)"><img name="buttonmainmenu_r1_c2" src="images/button%20main%20menu_r1_c2.gif" width="147" height="50" border="0" id="buttonmainmenu_r1_c2" alt="" /></a></td>
<td><a href="bio.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('buttonmainmenu_r1_c3','','images/button main menu_r1_c3_f2.gif',1)"><img name="buttonmainmenu_r1_c3" src="images/button%20main%20menu_r1_c3.gif" width="144" height="50" border="0" id="buttonmainmenu_r1_c3" alt="" /></a></td>
<td><a href="leap.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('buttonmainmenu_r1_c4','','images/button main menu_r1_c4_f2.gif',1)"><img name="buttonmainmenu_r1_c4" src="images/button%20main%20menu_r1_c4.gif" width="148" height="50" border="0" id="buttonmainmenu_r1_c4" alt="" /></a></td>
<td><a href="instruction.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('buttonmainmenu_r1_c5','','images/button main menu_r1_c5_f2.gif',1)"><img name="buttonmainmenu_r1_c5" src="images/button%20main%20menu_r1_c5.gif" width="142" height="50" border="0" id="buttonmainmenu_r1_c5" alt="" /></a></td>
<td><a href="videos.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('buttonmainmenu_r1_c6','','images/button main menu_r1_c6_f2.gif',1)"><img name="buttonmainmenu_r1_c6" src="images/button%20main%20menu_r1_c6.gif" width="145" height="50" border="0" id="buttonmainmenu_r1_c6" alt="" /></a></td>
<td><a href="contact.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('buttonmainmenu_r1_c7','','images/button main menu_r1_c7_f2.gif',1)"><img name="buttonmainmenu_r1_c7" src="images/button%20main%20menu_r1_c7.gif" width="161" height="50" border="0" id="buttonmainmenu_r1_c7" alt="" /></a></td>
<td><img name="buttonmainmenu_r1_c8" src="images/button%20main%20menu_r1_c8.gif" width="55" height="50" border="0" id="buttonmainmenu_r1_c8" alt="" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_2" width="1" height="50" border="0" id="undefined_2" /></td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="6" bgcolor="#99CC66" background="mm_dashed_line.gif"><img src="mm_dashed_line.gif" alt="line decor" width="4" height="3" border="0" /></td>
</tr>
<tr>
<td colspan="6" bgcolor="#5C743D"><img src="mm_spacer.gif" alt="" width="1" height="2" border="0" /></td>
</tr>
<tr>
<td width="167" align="center" valign="top" bgcolor="#5C743D"><table width="165" border="0" align="center" cellpadding="0" cellspacing="0" id="navigation">
<tr>
<td width="165" align="center"><p><font color="#FFFFff"><script language="JavaScript" type="text/javascript">
document.write(TODAY); </script></font>
</p></td>
</tr>
<tr>
<td width="165" align="left"><div align="left"><a href="testimonials.html" class="navText">Testimonials</a></div></td>
</tr>
<tr>
<td width="165" align="left"><div align="left"><a href="products.html" class="navText">Products</a></div></td>
</tr><tr>
<td width="165" align="left"><div align="left"><a href="press.html" class="navText">Press</a></div></td>
</tr>
<tr>
<td width="165" align="left"><div align="left"><a href="networks.html" class="navText">Join JM Networks</a></div></td>
</tr>
<tr>
<td width="165" align="left"><div align="left"><a href="pga_sec.html" class="navText">PGA Sections</a></div></td>
</tr>
<tr>
<td width="165" align="left"><div align="left"><a href="tours.html" class="navText">Professional Tours</a></div></td>
</tr>
<tr>
<td width="165" align="left"><div align="left"><a href="health.html" class="navText">Health &amp; Fitness</a></div></td>
</tr>
<tr>
<td width="165" align="left"><div align="left"><a href="affiliates.html" class="navText">Local Affiliates</a></div></td>
</tr>
</table>
 
<div align="center">
<p><br />
<a href="book_online.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('compbooking','','images/compbooking_f2.jpg',1);"><img name="compbooking" src="images/compbooking.jpg" width="165" height="250" border="0" id="compbooking" alt="" /></a></p>
<p><span class="style6"><a href="refer.html">Refer This Site</a></span><br />
</p>
</div>
<div align="center"></div></td>
<td width="36"><img src="images/mm_spacer.gif" width="100%" height="1" /></td>
<td width="403"valign="top" bgcolor="#FFFFFF"><img src="mm_spacer.gif" alt="v" width="305" height="1" border="0" /><br />


<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3" class="pageName"><img src="images/welcome.png" width="440" height="27" /><br /></td>
</tr>
<tr valign="top">
<td valign="top"><p align="right"><img src="images/jonwbag.jpg" width="150" height="247" /><em><br />
<span class="style2">Scroll for <br />
additional content</span></em></p> </td>
<td>&nbsp;</td><td rowspan="2" valign="top"><script type="text/javascript">

/******************************************
* Scrollable content script II- © Dynamic Drive (www.dynamicdrive.com)
* Visit http://www.dynamicdrive.com/ for full source code
* This notice must stay intact for use
******************************************/

iens6=document.all||document.getElementById
ns4=document.layers

//specify speed of scroll (greater=faster)
var speed=5

if (iens6){
document.write('<div id="container" style="position:relative;width:275px;height:250px;border:0px; border color: #99CC66;overflow:hidden">')
document.write('<div id="content" style="position:absolute;width:270px;left:0;top:0">')
}
</script>

<ilayer name="nscontainer" width=275 height=250 clip="0,0,275,250">
<layer name="nscontent" width=275 height=250 visibility=hidden left="3" top="3">


<div align="justify">
<!--INSERT CONTENT HERE-->
<font color="#000000" align="justify">Learning the game of golf is not an easy process. Learning to swing the golf club properly is the hardest part of that process. It can be frustrating for the average golfer watching tour pros make it look so easy when to them it seems so difficult. So what do great ball strikers do that the average golfer does not … they simply perform the necessary fundamental body motions. Knowing and performing these fundamental movements very, very well is actually the key to an effortless and consistent golf swing. <br />
<br />
Having played competitively and professionally most of my life, I have sought out knowledge of how to hit the ball long and straight with the simplest motion possible. What I learned through many years of instruction is that "knowing how" is easier then "showing how". The most difficult thing as an instructor was getting my students to perform the movements that I was showing them. <br />
<br />
That's why I'm excited about the development of LEAP Golf™. LEAP Golf™ is a system of learning that allows correct body movement to happen naturally with less effort, by emphasizing learning motion vs. hitting a golf ball. My goal is to help golfers of all levels accelerate their learning process and reach a new level of success and enjoyment playing this great game of golf.</font>
<!--END CONTENT-->
</div>
</layer></ilayer>

<script language="JavaScript1.2">
if (iens6)
document.write('</div></div>')
</script>

<table align="left">
<tr>

<td>
<a href="#" onMouseover="moveup()" onMouseout="clearTimeout(moveupvar)"><img src="images/up.gif" border=0></a> <a href="#" onMouseover="movedown()" onMouseout="clearTimeout(movedownvar)"><br /><img src="images/down.gif" border=0></a></td><td width="100%">&nbsp;</td><td align="right" valign="bottom"><br /><img src="images/home_signature.gif" alt="" width="153" height="55" align="right" /></td>
</table>

<script language="JavaScript1.2">
if (iens6){
var crossobj=document.getElementById? document.getElementById("content") : document.all.content
var contentheight=crossobj.offsetHeight
}
else if (ns4){
var crossobj=document.nscontainer.document.nscontent
var contentheight=crossobj.clip.height
}

function movedown(){
if (iens6&&parseInt(crossobj.style.top)>=(contentheight*(-1)+100))
crossobj.style.top=parseInt(crossobj.style.top)-speed+"px"
else if (ns4&&crossobj.top>=(contentheight*(-1)+100))
crossobj.top-=speed
movedownvar=setTimeout("movedown()",20)
}

function moveup(){
if (iens6&&parseInt(crossobj.style.top)<=0)
crossobj.style.top=parseInt(crossobj.style.top)+speed+"px"
else if (ns4&&crossobj.top<=0)
crossobj.top+=speed
moveupvar=setTimeout("moveup()",20)

}

function getcontent_height(){
if (iens6)
contentheight=crossobj.offsetHeight
else if (ns4)
document.nscontainer.document.nscontent.visibility="show"
}
window.onload=getcontent_height
</script></td></tr>

<tr valign="top">
<td height="35" valign="top"></td>
<td width="10"><img src="images/mm_spacer.gif" width="100%" height="1" /></td>
</tr>
</table>
 
<img src="images/dot.gif" width="100%" /><br />
<table width="100%" border="0" cellpadding="1">
<tr>
<td width="31%" valign="top"><img src="images/Leap Golf Logo.jpg" width="126" height="112" /></td>
<td width="69%" colspan="3" valign="bottom" class="bodyText"><div align="left" class="style3">
<div align="justify">Developed in conjunction with leading physical therapists, the drills, exercises and swing aids prescribed to correct your individual swing faults are designed to eliminate your body's barriers to learning the movement patterns necessary for a great golf swing.</div>
</div></td>
</tr>
<tr>
<td width="31%" valign="top">&nbsp;</td>
<td align="right" width="60%"><div align="right"></div></td>
<td align="right"><a href="leap.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('morebtn','','images/morebtn_f2.gif',1);"><img name="morebtn" src="images/morebtn.gif" width="46" height="15" border="0" id="morebtn" alt="" /></a></td>
<td align="right"><img src="images/mm_spacer.gif" width="100" height="1" /></td>
</tr>
</table></td>
<td width="20" bgcolor="#ffffff"><img src="images/mm_spacer.gif" width="100%" height="1" /></td>
<td width="378" align="right" valign="top" bgcolor="#FFFFFF">
<table border="0" cellpadding="0" cellspacing="0" id="leftcol">
<tr>

<td height="618" align="center" valign="top" bordercolor="#9BCB67" class="smallText"> <p> <a href="bookonline.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('bklssnbtnsmall','','images/bklssnbtn(small)_f2.jpg',1);"><img name="bklssnbtnsmall" src="images/bklssnbtn(small).jpg" width="209" height="98" border="0" id="bklssnbtnsmall" alt="" /></a></p>
<p> <a href="gift_cert.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('gcbtnsmall','','images/gcbtn(small)_f2.jpg',1);"><img name="gcbtnsmall" src="images/gcbtn(small).jpg" width="209" height="98" border="0" id="gcbtnsmall" alt="" /></a></p>
<p> <a href="create_a_clinic.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('clinicbtnsmall','','images/clinicbtn(small)_f2.jpg',1);"><img name="clinicbtnsmall" src="images/clinicbtn(small).jpg" width="209" height="98" border="0" id="clinicbtnsmall" alt="" /></a></p>
<p>&nbsp;</p>
<p align="center"><br />
</div>
</p>
<p align="center" class="style1 style2">View More Testimonials</p><p align="center"><script type="text/javascript">

//new pausescroller(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds)

new pausescroller(pausecontent, "pscroller1", "smalltext", 4000)
test("<br />")


</script>
</p></td>

<td bgcolor="#ffffff" width="15"><img src="images/mm_spacer.gif" width="100%" height="1" /></td>
<td valign="top" bgcolor="#FFFFFF" align="right" ><!-- START CUSTOM WIDGETBUCKS CODE -->
<p><script type="text/javascript" src="http://cdn.widgetserver.com/syndication/subscriber/InsertWidget.js"></script><script>if (WIDGETBOX) WIDGETBOX.renderWidget('40444ab6-2d5b-48b4-a85b-e04afdd54647');</script>
</p>
<p></p><!-- End CUSTOM WIDGETBUCKS CODE --> </td>
</tr>
</table>
</td>
</tr>
</table>
<table width="1000" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#5C753E">

<tr>
<td bgcolor="#5C733D"><table border="0" cellpadding="0" cellspacing="0" width="1000">
<!-- fwtable fwsrc="bottom ads.png" fwpage="Page 1" fwbase="bottom ads.gif" fwstyle="Dreamweaver" fwdocid = "57204049" fwnested="0" -->
<tr>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="165" height="1" border="0" id="undefined_3" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="139" height="1" border="0" id="undefined_3" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0" id="undefined_3" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="138" height="1" border="0" id="undefined_3" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0" id="undefined_3" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="138" height="1" border="0" id="undefined_3" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0" id="undefined_3" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="138" height="1" border="0" id="undefined_3" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0" id="undefined_3" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="138" height="1" border="0" id="undefined_3" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0" id="undefined_3" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="139" height="1" border="0" id="undefined_3" /></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="1" height="1" border="0" id="undefined_3" /></td>
</tr>
<tr>
<td><img name="bottomads_r1_c1" src="images/bottom%20ads_r1_c1.gif" width="165" height="45" border="0" id="bottomads_r1_c1" alt="" /></td>
<td><a href="http://www.clevelandgolf.com" target="_self" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('bottomads_r1_c2','','images/bottom ads_r1_c2_f2.gif',1)"><img name="bottomads_r1_c2" src="images/bottom%20ads_r1_c2.gif" width="139" height="45" border="0" id="bottomads_r1_c2" alt="" /></a></td>
<td colspan="2"><a href="http://www.kaenon.com" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('bottomads_r1_c3','','images/bottom ads_r1_c3_f2.gif',1)"><img name="bottomads_r1_c3" src="images/bottom%20ads_r1_c3.gif" width="139" height="45" border="0" id="bottomads_r1_c3" alt="" /></a></td>
<td colspan="2"><a href="leap.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('bottomads_r1_c5','','images/bottom ads_r1_c5_f2.gif',1)"><img name="bottomads_r1_c5" src="images/bottom%20ads_r1_c5.gif" width="139" height="45" border="0" id="bottomads_r1_c5" alt="" /></a></td>
<td colspan="2"><a href="http://www.elec-car.com" target="_self" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('bottomads_r1_c7','','images/bottom ads_r1_c7_f2.gif',1)"><img name="bottomads_r1_c7" src="images/bottom%20ads_r1_c7.gif" width="139" height="45" border="0" id="bottomads_r1_c7" alt="" /></a></td>
<td colspan="2"><a href="http://www.straightdown.com" target="_self" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('bottomads_r1_c9','','images/bottom ads_r1_c9_f2.gif',1)"><img name="bottomads_r1_c9" src="images/bottom%20ads_r1_c9.gif" width="139" height="45" border="0" id="bottomads_r1_c9" alt="" /></a></td>
<td colspan="2"><a href="http://www.pccelectronics.com" target="_self" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('bottomads_r1_c11','','images/bottom ads_r1_c11_f2.gif',1)"><img name="bottomads_r1_c11" src="images/bottom%20ads_r1_c11.gif" width="140" height="45" border="0" id="bottomads_r1_c11" alt="" /></a></td>
<td><img src="images/spacer.gif" alt="" name="undefined_3" width="1" height="45" border="0" id="undefined_3" /></td>
</tr>
</table></td>

</tr>
</table>
<td width="425" valign="top" bgcolor="#5C743D"><div align="left"></div></td>
</tr>
<tr>
<td width="15">&nbsp;</td>
<td width="174">&nbsp;</td>
<td width="149">&nbsp;</td>
<td width="50">&nbsp;</td>
<td width="215">&nbsp;</td>
<td width="425">&nbsp;</td>
<td width="4">&nbsp;</td>
</tr>
</table>
</body>
</html>
pandy
It would be better if you put it back online. With images and CSS and all.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2009 Invision Power Services, Inc.