Ajax / Java script error, conflict in my page.

Hello;
I'm writting a simple slideshow for my web site. I'm trying to use dynamic html / ajax to accomplish this but I am getting an error in my code, and it seems to be conflicting with my navigation as well. The navigation is written in Java as well. So what I'm going to do is post my pages code from my java in the head to the java page that runs the slideshow and the css file. Maybe someone else can see where my problem is. It will work once this problem is figured out...
Here is my code:
Main page:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link href="../style.css" rel="stylesheet" type="text/css">
<link href="slideStyles.css" rel="stylesheet" type="text/css" media="screen" />
<script src="slideControls.js" type="text/javascript"></script>
<script type="text/javascript">
<!--
function newImage(arg) {
if (document.images) {
  rslt = new Image();
  rslt.src = arg;
  return rslt;
function changeImages() {
if (document.images && (preloadFlag == true)) {
  for (var i=0; i<changeImages.arguments.length; i+=2) {
   document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
var preloadFlag = false;
function preloadImages() {
if (document.images) {
  home_over = newImage("images/home-over.jpg");
  about_over = newImage("images/about-over.jpg");
  services_over = newImage("images/services-over.jpg");
  projects_over = newImage("images/projects-over.jpg");
  contact_over = newImage("images/contact-over.jpg");
  preloadFlag = true;
// -->
</script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="preloadImages();" class="mainBody">
<center>
<div id="wrapper">
<div id="mainHeader">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="50%" align="left" valign="top"><img src="../images/logo.jpg" alt="" width="296" height="120" /></td>
    <td width="50%" align="right" valign="top"><img src="../images/projectHead.gif" alt="" width="393" height="120" /></td>
  </tr>
  </table>
</div>
<div id="mainSpacer"></div>
<div id="navBar" align="center">
<a href="../index.html"
    onmouseover="window.status='home'; changeImages('home', 'images/home-over.jpg'); return true;"
    onmouseout="window.status=''; changeImages('home', 'images/home.jpg'); return true;"
    onmousedown="changeImages('home', 'images/home-over.jpg'); return true;"
    onmouseup="changeImages('home', 'images/home-over.jpg'); return true;" style="margin-right:15px;">
    <img name="home" src="../images/home.jpg" width="68" height="26" border="0" alt="Home"></a>
<a href="../about.html"
    onmouseover="window.status='about'; changeImages('about', 'images/about-over.jpg'); return true;"
    onmouseout="window.status=''; changeImages('about', 'images/about.jpg'); return true;"
    onmousedown="changeImages('about', 'images/about-over.jpg'); return true;"
    onmouseup="changeImages('about', 'images/about-over.jpg'); return true;" style="margin-right:9px;">
    <img name="about" src="../images/about.jpg" width="87" height="26" border="0" alt="About Us"></a> 
<a href="../project.html"
    onmouseover="window.status='projects'; changeImages('projects', 'images/projects.jpg'); return true;"
    onmouseout="window.status=''; changeImages('projects', 'images/projects-over.jpg'); return true;"
    onmousedown="changeImages('projects', 'images/projects.jpg'); return true;"
    onmouseup="changeImages('projects', 'images/projects.jpg'); return true;" style="margin-right:15px;">
    <img name="projects" src="../images/projects-over.jpg" width="83" height="26" border="0" alt="projects"></a>
<a href="../service.html"
    onmouseover="window.status='services'; changeImages('services', 'images/services-over.jpg'); return true;"
    onmouseout="window.status=''; changeImages('services', 'images/services.jpg'); return true;"
    onmousedown="changeImages('services', 'images/services-over.jpg'); return true;"
    onmouseup="changeImages('services', 'images/services-over.jpg'); return true;" style="margin-right:10px;">
    <img name="services" src="../images/services.jpg" width="84" height="26" border="0" alt="Services"></a>
           <a href="../contact.asp"
                onmouseover="window.status='contact us'; changeImages('contact_us', 'images/contact-over.jpg'); return true;"
    onmouseout="window.status=''; changeImages('contact_us', 'images/contact.jpg'); return true;"
    onmousedown="changeImages('contact_us', 'images/contact-over.jpg'); return true;"
    onmouseup="changeImages('contact_us', 'images/contact-over.jpg'); return true;">
    <img name="contact_us" src="../images/contact.jpg" width="101" height="26" border="0" alt="contact us"></a>
</div>
<div id="mainBody">
<div id="cover"> </div>
<div id="slide" onclick="hideSlide()">
<span class="slideControl">Click To Close&otimes;</span>
<div id="photoSlide">Loading</div>
</div>
<div id="photoAlbum">
<img src="lighting/photo0.jpg" alt="Testing" onclick="showSlide(this);"/>
<img src="lighting/photo1.jpg" alt="" onclick="showSlide(this);"/>
<img src="lighting/photo2.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo3.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo4.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo5.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo6.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo7.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo8.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo9.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo10.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo11.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo12.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo13.jpg" alt="" border="0" onclick="showSlide(this);"/>
</div>  
</div>
<div id="footerSpace"></div>
<div id="mainFooter">
<div id="footerLeft">&copy; 2010 Conway Brothers</div>
<div id="mainFooterRight"><a href="../index.html">Home</a> | <a href="../about.html">About Us</a> | <a href="../project.html">Projects</a> | <a href="../service.html">Services</a> | <a href="../contact.asp">Contact Us</a></div>
</div>
</div><br />
<br />
<br />
</center>
</body>
</html>
This is the slideControls.js file:
function findLivePageWidth() {
if (window.innerWidth)
   return window.innerWidth;
if (document.body.clientWidth)
   return document.body.clientWidth;
return (null); }
function initSlides() {
objectSlide=document.getElementById('slide');
objectCover=document.getElementById('cover');
objectPhotoSlide=document.getElementById('photoSlide'); }
function showSlide(evt) {
objectPhotoSlide.innerHTML='<img src="'+ evt.src +'" id="largePhoto" alt="Large Photo" border="0"/>';
objectPhotoSlide.innerHTML+='<p>' + evt.alt +'</p>';
objectLargePhoto=document.getElementById('largePhoto');
livePageWidth = findLivePageWidth();
newLeft = ((livePageWidth/2)-8) - (200);
objectSlide.style.left = newLeft + 'px';
objectSlide.style.display = 'block';
objectCover.style.display = 'block'; }
function hideSlide() {
objectSlide.style.display = 'none';
objectCover.style.display = 'none'; }
window.onload=initSlides;
this is the css file:
#slide {
position:absolute;
z-index: 1000;
display: none;
top: 100px;
text-align:right;
padding:0px 8px 8px 8px;
background-color:#fff;
cursor: pointer;
font:"Arial Black", Gadget, sans-serif;
font-weight:bold;
font-size:10px;
#cover {
position:absolute;
width:100%;
height:100%;
z-index:100;
display: none;
background-color:#000;
opacity: .75;
filter:progid:DXImageTransform.
  Microsoft.BasicImage(opacity=.75);
  top:0px;
  left:0px;
#photoAlbum {
position:relative;
z-index:0;
width: 400px;
#photoAlbum img {
width: 20%;
border: 2px solid red;
margin:8px;
vertical-align: top;
.slideControl {
color: red;
the error is in the slideControl.js file on line 13.
the error:
objectPhotoSlide is undefined line 13
that would be this code:
objectPhotoSlide.innerHTML+='<p>' + evt.alt +'</p>';
then there is the issue of interfearing with the operation of my nav.
Can anyone help me out.. I think I've been looking at this to long.
Thank you.

Hello;
I'm writting a simple slideshow for my web site. I'm trying to use dynamic html / ajax to accomplish this but I am getting an error in my code, and it seems to be conflicting with my navigation as well. The navigation is written in Java as well. So what I'm going to do is post my pages code from my java in the head to the java page that runs the slideshow and the css file. Maybe someone else can see where my problem is. It will work once this problem is figured out...
Here is my code:
Main page:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link href="../style.css" rel="stylesheet" type="text/css">
<link href="slideStyles.css" rel="stylesheet" type="text/css" media="screen" />
<script src="slideControls.js" type="text/javascript"></script>
<script type="text/javascript">
<!--
function newImage(arg) {
if (document.images) {
  rslt = new Image();
  rslt.src = arg;
  return rslt;
function changeImages() {
if (document.images && (preloadFlag == true)) {
  for (var i=0; i<changeImages.arguments.length; i+=2) {
   document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
var preloadFlag = false;
function preloadImages() {
if (document.images) {
  home_over = newImage("images/home-over.jpg");
  about_over = newImage("images/about-over.jpg");
  services_over = newImage("images/services-over.jpg");
  projects_over = newImage("images/projects-over.jpg");
  contact_over = newImage("images/contact-over.jpg");
  preloadFlag = true;
// -->
</script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="preloadImages();" class="mainBody">
<center>
<div id="wrapper">
<div id="mainHeader">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="50%" align="left" valign="top"><img src="../images/logo.jpg" alt="" width="296" height="120" /></td>
    <td width="50%" align="right" valign="top"><img src="../images/projectHead.gif" alt="" width="393" height="120" /></td>
  </tr>
  </table>
</div>
<div id="mainSpacer"></div>
<div id="navBar" align="center">
<a href="../index.html"
    onmouseover="window.status='home'; changeImages('home', 'images/home-over.jpg'); return true;"
    onmouseout="window.status=''; changeImages('home', 'images/home.jpg'); return true;"
    onmousedown="changeImages('home', 'images/home-over.jpg'); return true;"
    onmouseup="changeImages('home', 'images/home-over.jpg'); return true;" style="margin-right:15px;">
    <img name="home" src="../images/home.jpg" width="68" height="26" border="0" alt="Home"></a>
<a href="../about.html"
    onmouseover="window.status='about'; changeImages('about', 'images/about-over.jpg'); return true;"
    onmouseout="window.status=''; changeImages('about', 'images/about.jpg'); return true;"
    onmousedown="changeImages('about', 'images/about-over.jpg'); return true;"
    onmouseup="changeImages('about', 'images/about-over.jpg'); return true;" style="margin-right:9px;">
    <img name="about" src="../images/about.jpg" width="87" height="26" border="0" alt="About Us"></a> 
<a href="../project.html"
    onmouseover="window.status='projects'; changeImages('projects', 'images/projects.jpg'); return true;"
    onmouseout="window.status=''; changeImages('projects', 'images/projects-over.jpg'); return true;"
    onmousedown="changeImages('projects', 'images/projects.jpg'); return true;"
    onmouseup="changeImages('projects', 'images/projects.jpg'); return true;" style="margin-right:15px;">
    <img name="projects" src="../images/projects-over.jpg" width="83" height="26" border="0" alt="projects"></a>
<a href="../service.html"
    onmouseover="window.status='services'; changeImages('services', 'images/services-over.jpg'); return true;"
    onmouseout="window.status=''; changeImages('services', 'images/services.jpg'); return true;"
    onmousedown="changeImages('services', 'images/services-over.jpg'); return true;"
    onmouseup="changeImages('services', 'images/services-over.jpg'); return true;" style="margin-right:10px;">
    <img name="services" src="../images/services.jpg" width="84" height="26" border="0" alt="Services"></a>
           <a href="../contact.asp"
                onmouseover="window.status='contact us'; changeImages('contact_us', 'images/contact-over.jpg'); return true;"
    onmouseout="window.status=''; changeImages('contact_us', 'images/contact.jpg'); return true;"
    onmousedown="changeImages('contact_us', 'images/contact-over.jpg'); return true;"
    onmouseup="changeImages('contact_us', 'images/contact-over.jpg'); return true;">
    <img name="contact_us" src="../images/contact.jpg" width="101" height="26" border="0" alt="contact us"></a>
</div>
<div id="mainBody">
<div id="cover"> </div>
<div id="slide" onclick="hideSlide()">
<span class="slideControl">Click To Close&otimes;</span>
<div id="photoSlide">Loading</div>
</div>
<div id="photoAlbum">
<img src="lighting/photo0.jpg" alt="Testing" onclick="showSlide(this);"/>
<img src="lighting/photo1.jpg" alt="" onclick="showSlide(this);"/>
<img src="lighting/photo2.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo3.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo4.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo5.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo6.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo7.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo8.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo9.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo10.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo11.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo12.jpg" alt="" border="0" onclick="showSlide(this);"/>
<img src="lighting/photo13.jpg" alt="" border="0" onclick="showSlide(this);"/>
</div>  
</div>
<div id="footerSpace"></div>
<div id="mainFooter">
<div id="footerLeft">&copy; 2010 Conway Brothers</div>
<div id="mainFooterRight"><a href="../index.html">Home</a> | <a href="../about.html">About Us</a> | <a href="../project.html">Projects</a> | <a href="../service.html">Services</a> | <a href="../contact.asp">Contact Us</a></div>
</div>
</div><br />
<br />
<br />
</center>
</body>
</html>
This is the slideControls.js file:
function findLivePageWidth() {
if (window.innerWidth)
   return window.innerWidth;
if (document.body.clientWidth)
   return document.body.clientWidth;
return (null); }
function initSlides() {
objectSlide=document.getElementById('slide');
objectCover=document.getElementById('cover');
objectPhotoSlide=document.getElementById('photoSlide'); }
function showSlide(evt) {
objectPhotoSlide.innerHTML='<img src="'+ evt.src +'" id="largePhoto" alt="Large Photo" border="0"/>';
objectPhotoSlide.innerHTML+='<p>' + evt.alt +'</p>';
objectLargePhoto=document.getElementById('largePhoto');
livePageWidth = findLivePageWidth();
newLeft = ((livePageWidth/2)-8) - (200);
objectSlide.style.left = newLeft + 'px';
objectSlide.style.display = 'block';
objectCover.style.display = 'block'; }
function hideSlide() {
objectSlide.style.display = 'none';
objectCover.style.display = 'none'; }
window.onload=initSlides;
this is the css file:
#slide {
position:absolute;
z-index: 1000;
display: none;
top: 100px;
text-align:right;
padding:0px 8px 8px 8px;
background-color:#fff;
cursor: pointer;
font:"Arial Black", Gadget, sans-serif;
font-weight:bold;
font-size:10px;
#cover {
position:absolute;
width:100%;
height:100%;
z-index:100;
display: none;
background-color:#000;
opacity: .75;
filter:progid:DXImageTransform.
  Microsoft.BasicImage(opacity=.75);
  top:0px;
  left:0px;
#photoAlbum {
position:relative;
z-index:0;
width: 400px;
#photoAlbum img {
width: 20%;
border: 2px solid red;
margin:8px;
vertical-align: top;
.slideControl {
color: red;
the error is in the slideControl.js file on line 13.
the error:
objectPhotoSlide is undefined line 13
that would be this code:
objectPhotoSlide.innerHTML+='<p>' + evt.alt +'</p>';
then there is the issue of interfearing with the operation of my nav.
Can anyone help me out.. I think I've been looking at this to long.
Thank you.

Similar Messages

  • Spry tabbed panels java script error screwing up whole page when I reopen document in dreamweaver

    I need help!
    I am creating a site in dreamweaver and I am using spry tabbed panels for my content on every page.  I've created 4 pages.  When I go to reopen the pages after quitting dreamweaver 2 open and work just fine.  However, for the other two I receive a window that says,
    this document contains javascript code for a widget that no longer exists.  If you don't remove the code, the browser may display javascript errors when loading the page.  Would you like dreamweaver to find all instances of this code for you. 
    I've selected both yes and no options and either way my entire page becomes all jumbled.  I've tried deleting the script in code view and it doesn't help? 

    <!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>LEAP 2 GROW</title>
    <style type="text/css">
    <!--
    body  {
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
    background-color: #090909;
    background-image: url(k2-mountain-1280x800-1.jpg);
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;
    .twoColFixLtHdr #container {
    width: 1200px;
    margin: 0 auto;
    text-align: left; /* this overrides the text-align: center on the body element. */
    .twoColFixLtHdr #header {
    padding: 0;
    margin-top: 10px;
    border-bottom-width: medium;
    border-bottom-style: solid;
    border-bottom-color: #8CC543;
    .twoColFixLtHdr #header h1 {
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    .twoColFixLtHdr #sidebar1 {
    float: left; /* since this element is floated, a width must be given */
    width: 230px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 0;
    background-color: #25A8E0;
    margin-top: 40px;
    height: 400px;
    .twoColFixLtHdr #mainContent {
    margin-right: 0;
    margin-bottom: 0px;
    margin-left: 248px;
    border: 1px solid #8CC543;
    margin-top: 40px;
    text-align: center;
    background-position: center center;
    color: #8CC543;
    font-family: "Century Gothic";
    font-size: medium;
    text-transform: none;
    height: 400px;
    background-image: url(k2-faded.jpg);
    .twoColFixLtHdr #footer {
    padding: 0;
    text-align: left;
    font-family: "Century Gothic";
    text-transform: uppercase;
    color: #25A8E0;
    letter-spacing: 5px;
    font-size: small;
    word-spacing: normal;
    display: block;
    margin-left: 0px;
    margin-top: 10px;
    .twoColFixLtHdr #footer p {
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    -->
    </style>
    <!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .twoColFixLtHdr #sidebar1 { width: 230px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixLtHdr #sidebar1 { padding-top: 30px; }
    .twoColFixLtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    a:link {
    color: #25A8E0;
    text-decoration: none;
    a:hover {
    color: #8CC543;
    text-decoration: none;
    -->
    </style>
    <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryEffects.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    function MM_effectAppearFade(targetElement, duration, from, to, toggle)
    Spry.Effect.DoFade(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
    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];}}
    //-->
    </script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    .style2 {font-size: xx-small; color: #EEEEEE; }
    a:visited {
    text-decoration: none;
    color: #25A8E0;
    a:active {
    text-decoration: none;
    .style3 {
    color: #FFFFFF;
    font-weight: bold;
    .style4 {color: #FFFFFF}
    -->
    </style>
    <style type="text/css">
    <!--
    .style5 {font-size: x-large}
    h1 {
    font-size: medium;
    color: #25A8E0;
    .style6 {color: #444444}
    .style8 {color: #444444; font-weight: bold; }
    -->
    </style>
    <link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
    </head>
    <body class="twoColFixLtHdr" onload="MM_preloadImages('HS-MENTOR-OVER.png')">
    <div id="container">
      <div id="header">
        <h1><a href="index.html"><img src="web-banner.png" width="514" height="127" /></a>
        <!-- end #header --></h1>
        <ul id="MenuBar2" class="MenuBarHorizontal">
          <li><a href="volunteer.html">VOLUNTEER</a> </li>
          <li><a href="parentcollege.enroll.html">PARENT COLLEGE: ENROLL</a></li>
          <li><a href="https://leapfrog-usa.com/AOE/Parent-Resources/Enrollment-Form.aspx">AFTER SCHOOL: ENROLL</a> </li>
        </ul>
      </div>
      <div id="sidebar1">
        <ul id="MenuBar1" class="MenuBarVertical">
          <li><a href="#" class="MenuBarItemSubmenu">ABOUT US</a>
            <ul>
              <li><a href="mission.html">mission/overview</a></li>
              <li><a href="ourteam.html">OUR team</a></li>
            </ul>
          </li>
          <li><a href="problem.html">THE PROBLEM</a></li>
          <li><a href="#" class="MenuBarItemSubmenu">THE SOLUTION</a>
            <ul>
              <li><a href="solution.overview.html">overview</a></li>
              <li><a href="solution.structure.html">structure</a></li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">PROGRAMS</a>
            <ul>
              <li><a href="parentcollege.html">parent college</a></li>
              <li><a href="mentor.html">MENTOR program</a></li>
              <li><a href="farming.html">urban farming</a></li>
              <li><a href="afterschool.html">CHARTER AFTER SCHOOL</a></li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">LOCATIONS</a>
            <ul>
              <li><a href="location.fulton.html">fulton county ga</a></li>
              <li><a href="location.haiti.html">haiti</a></li>
              <li><a href="location.tribe.html">native american tribe</a></li>
            </ul>
          </li>
          <li><a href="news.html">NEWS|RESOURCES</a></li>
          <li><a href="contact.html">CONTACT US</a></li>
          <li><a href="#">DONATE</a></li>
        </ul>
      </div>
      <div class="style3" id="mainContent">
        <div align="left" class="style4">
          <p class="style5">MENTOR PROGRAM</p>
          <div id="TabbedPanels2" class="TabbedPanels">
            <ul class="TabbedPanelsTabGroup">
              <li class="TabbedPanelsTab" tabindex="0">ABOUT</li>
              <li class="TabbedPanelsTab" tabindex="0">PROGRAM DIRECTOR</li>
              <li class="TabbedPanelsTab" tabindex="0">L2G CERTIFICATION</li>
              <li class="TabbedPanelsTab" tabindex="0">PHOTO GALLERY</li>
              <li class="TabbedPanelsTab" tabindex="0">HIGH SCHOOL ACADEMIC MENTOR</li>
              <li class="TabbedPanelsTab" tabindex="0">COMMUNITY-LEADER MENTOR</li>
            </ul>
            <div class="TabbedPanelsContentGroup">
              <div class="TabbedPanelsContent">
                <blockquote>
                  <p><em>“Those who have the ability, have the responsibility”</em></p>
                  <p><u>Avenue of attention:</u> <strong>                        MENTOR PROGRAM</strong> <br />
                    Unites local society, by focusing the <u>attention</u> of the community’s talent, on children (ages 7 – 12) who are in need of positive role models.  </p>
                  <p>Two levels of involvement: </p>
                  <ol>
                    <li>High School Academic Mentors</li>
                    <li>Community-Leader Mentors</li>
                  </ol>
                  <p><u>Program title:</u>                          <strong>Talent 2 Kids</strong> </p>
                  <p><u>Why Program Important</u><strong>:</strong>  </p>
                  <ol>
                  <ul>
                    <li><strong>Motivates</strong> children by providing successful, caring role models into their lives, and in accordance, exposing them to realistic paths towards financial success. </li>
                    <li>High school juniors and seniors on the honor roll are eligible to tutor elementary school children, utilizing their skills in helping with homework and comprehension.</li>
                    <li>Community business leaders will act as “big brother/big sisters,” mentoring and monitoring a child’s well being and academic progress.  Also, sharing career information and the associated path to success, along with teaching real-life problem solving skills.</li>
                  </ul>
                </blockquote>
              </div>
              <div class="TabbedPanelsContent">Content 2</div>
              <div class="TabbedPanelsContent">Content 3</div>
              <div class="TabbedPanelsContent">Content 4</div>
              <div class="TabbedPanelsContent">Content 5</div>
              <div class="TabbedPanelsContent">Content 6</div>
            </div>
          </div>
          <p> </p>
        </div>
        <p> </p>
        <p> </p>
      </div>
    <div id="footer">
      <table width="1200" border="0">
          <tr>
            <td><div align="left"><a href="parentcollege.html">parent college</a></div></td>
            <td><div align="center"><a href="mentor.html">MENTOR program</a></div></td>
            <td><div align="center"><a href="farming.html">urban farming</a></div></td>
            <td><div align="right"><a href="afterschool.html">charter after school</a></div></td>
          </tr>
        </table>
        <p align="center" class="style2">A NON-PROFIT ORGANIZATION, EMPOWERING COMMUNITIES TO MOTIVATE THEIR CHILDREN, CREATING LASTING CHANGE</p>
        <!-- end #footer --></div>
    <!-- end #container --></div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels2");
    //-->
    </script>
    </body>
    </html>

  • Jave Script error when opening any page.

    Whenever I load a page into Firefox I get the following error message: "[javascript application] Type Error: Components Class [CID] is undefined" This has happened with the last few versions of Firefox.

    This issue can be caused by an extension that isn't working properly.
    Do you have any AVG extensions or toolbars installed?
    *Tools > Add-ons > Extensions
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • All-11-otn4.js - Page Stops responding due to Java script error

    Hi,
    I am getting java script error in all-11-otn4.js. My page becomes unresponisve and I am getting the cause as all-11-otn4.js file. After this error I cannot do any thing in page, I need to restart IE.
    I am navigating from one View state to another View state and then again comming back to original view state. When I am comming back to Original View state, I am getting this error.
    - Sujay

    Hi,
    what you describe doesn't help solving the issue. What do you mean by "I am navigating from one View state to another View state" ? Also it seems that you on a non production version of JDeveloper11 (TP4), so can you pelase try a production version ?
    Frank

  • " loading failed please check your page for  java script errors" please Help

    recently my project starts crashing.... when it loads it gives a java scrip error .. saying " loading failed please check your page for  java script errors"

    Hey, If you have an error, you should see the error in Edge and you can correct it. In the window/code there will be a red dot too.

  • Java Script Error while deploying a Model with Value Help

    Hi,
    I am using EP 7.0 SP 10.
    I am trying to deploy a model which includes the Value Help for an Input field, and i am trying to deploy this model.
    The model compiles successfully, but gives a Java Script Error while deploying the model,
    ! Error on Page
    When Click on this java script error, it shows that ,
    Line:14985
    Char 1: Error
    object does n't support this property or method.
    code
    URL: <serverhost>/VCRes/WebContent/VisualComposer6.0/bin/223334.htm?24102006.1712.
    The Same model works in dev server, and it fails in the production server.
    Thanks and Regards,
    Sekar

    Hi jakob,
    Thankyou for your quick response.
    I did a basic model with the help of a documentation which i got from this forums.I created a iView and from there i used Bapi "BAPI_SALESORDER ".
    I created a Input Form and a outpot form (table view).I tested model and am able to get the output.but when i try to deploy it is giving me the error.
    And i think am not paring any formulas here.
    Please guide me.
    thanks and regrads
    Pradeep.B

  • Getting tha java script error while calling OAF forms in ADF

    Hi ,
    I am trying to get/access the Oracle forms in ADF page.
    I am following http://static.commit-consulting.com/oraformsfaces developers guide for guidlines.
    while runnign my page getting the error in popup look like java script error.
    the pop up contente is :
    Failed to execute java script
    Check for JavaScript errors, if the Forms server is running and if your browser can download a javaScript from http://bdc6oracle001.gdnindia.com:8005/forms/frmservlet?config=OraFormsFaces
    http://bdc6oracle001.gdnindia.com:8005/forms/frmservlet?config=OraFormsFaces is my server EBS server where oracle forms exist.
    Please help me on this.
    Thanks,
    MadhavaReddy

    You're probably better off asking the OraFormsFaces people for help

  • Installation of Adobe Flash 11.7.700.169 fails w/Java script errors

    I am getting very frustrated with Adobe software, it seems that nearly every time I try to update my flash player the update Flash player process fails with a java script error.
    I currently am running Adobe Flash player: 11.6.602.180
    My system is running 32-bit Windows XP, SP3, all patches to date, IE v8.0.6001.18702.
    When I try to install the Adobe Flash player update to 11.7.700.169 the process always fails with the following....
    A pop up to the screen from IE, titled: "Internet Explorer Script Error"
    The  message displayed on the screen is:
       An error has occured on the script on this page.
       Line: 1
       Char: 15965
       Error: Object Expected
      Code: 0
      URL: http://127.0.0.1/app/_js/adobe.js
    Do you want to continue running scripts on this page? <Yes>/<No>
    No matter what choice I make the install fails (choosing yes causes more Script Error messages to appear, before it finally hangs).
    I have followed the steps suggested on the 'Troubleshooting page', yes Active Scripts are enabled within IE
    I also have tried turning off all AV and Firewalls when performing installation, yet I get the same errors.
    Thanks,
    Mark Reynolds

    Download and run the offline installer from http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#mai n-pars_header

  • Java Script Error in downloading CS3 Master Collection

    I just bought a new MacBook Pro and I went to download my CS3 Master Collection. In the middle of downloading Disc 1 I got a kernel telling my to push the power button until the computer shuts off and turn it on again. Then when I tried to redownload Disc 1 it gives me an error message. "Java Script Error and says to download using the original media, but I AM using the ORIGINAL MEDIA. Anyone ever have this problem? I already tried pulling out the partial download from applications but it did not help. I cannot use my CS3 Master Collection now unless I figure out how to fix this problem.

    clear your adobe.com cookies or use a different browser or dl from prodesigntools.com
    to dl from prodesigntools.com:
    if you follow all 7 steps you can directly download a trial here:  Download Adobe CS4 and CS3 Free Trials Here (incl. After Effects) | ProDesignTools
    and activate with your serial number.
    if you have a problem starting the download, you didn't follow all 7 steps, or your browser does not accept cookies. 
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com). 
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com or initiates the download of an incorrect (eg, current) version.

  • V 3.6.16 unresponsive script in Gmail, jave script errors on some other sites.

    Hi,
    I'm using FireFox v 3.6.16 (afraid of 4 once I read of similar problems) and whenever I go to Gmail, I got unresponsive script errors that make it hang up repeatedly. I did something that got rid of the message but not the hang ups (sorry, can't remember what). I also occasionally get Java script errors specifically on some other sites. Please help--I love FireFox. I've running Vista Home Premium on an Athlon 64 x 2 (PC), but I also had this problem on XP.

    See this page for help, also lists several extensions
    * http://kb.mozillazine.org/Unresponsive_Script_Warning

  • Java Script error with EDIT LOCALLY

    HI All
    We're on NW2004s, users run Windows XP with I.E 7.
    Im trying to edit one document in my KM with the "Edit Locally" option. The moment I click on this option, it shows a Java Script error on the page and shows that the excel sheet is still opening (Loading....). It never opens.
    The Java Script reads -> Object doesnt support this property or method.
    Do I need to do any configurations ? Any clues ?
    Regds,
    Edited by: S.B on May 6, 2008 8:25 PM

    I checked this link:
    http://help.sap.com/saphelp_nw04s/helpdata/en/24/ae5e77711b431c887aa5193af8d851/frameset.htm
    and checked the folloing :
    You can also verify the download as follows:
           1.      In the Web browser of the user, from the Tools menu, select Internet Options.
           2.      In the General tab, click the Settings button.
           3.      In the Settings window, click the View Objects button.
           4.      In the Download Program Files window, if any of the following appear in the Program Files list, then the ActiveX control was downloaded:
    ¡        ExpBaseNegotiator
    ¡        ExpApplSelect
    ¡        ExpApplShareX
    The above files are not there in my Downloaded program files window. Which means my active x is not enabled.
    Any idea where can I get these files ?

  • Java Script error message IE 5.1 browser

    This all started about a week or so ago. While not every time, but often enough to be be a nuisance, I keep getting script error messages. It happens while webpages are loading. The message alerts of the Java script error and asks if I wish to keep loading the scripts or not. If I click yes, or if I click no, the page will usually still load. I am wondering if the webpage programmers have added something new, or if something is wrong with the IE browser?
    Cube G4 450 mhz   Mac OS 9.2.x   384 MB

    Thanks Robbie,
    I took your advice and upgraded, maybe, to IE 5.1.7, or at the least I reinstalled Internet Explorer.
    I just want to say what a great blessing is the USB memory stick to people like me. I don't have, and I can't get, DSL broadband. If I could I would like a shot. Not having that I trundle to the local branch library, plug-in my memory stick, download whatever I want, and trundle back home with it. What would have taken a half day to down load on dial up, takes about 5 minutes at the library.
    While I was there I also downloaded mozilla 1.3.1, the latest version of stuffit expander, talked to some nice people, and brought home a good book to read in the bargain.
    It was a good day. Kurt Vonngut was right, "People are made to f..t around."
    Lawrence
    Cube G4   Mac OS 9.2.x  

  • When I click on firefox I get a java script error that says "TypeError: Components.classes[TvtPwmComponent_CID] is undefined", what does that mean?

    Whenever I click on firefox, or when a pop-up occurs, I get a java script error that says, "TypeError: Components.classes[TvtPwmComponent_CID] is undefined". I don't know why. It first occurred while I was on ESPN while trying to watch college games live.

    This issue can be caused by an extension that isn't working properly.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Best practice for java script placement on a BC page?

    Hi guys just a general ask about where the best place for java script is on a BC page.
    I just watched the this very good video on optimization http://bcgurus.com/tutorials/how-to-do-website-performance-optimization and in it it says how you should try and load the scripts at the bottom of the page so that it loads quicker.
    now I want to do this but with it being a BC site i dont know if certain scripts have to be in the head of the doc. For instance the validate script I have? Does anyone know what I can and cant move from the head?
    I was going to do what kiyuco like to practice and add all my scripts to a content holder and then add that to my pages/templates. Will BC like me adding this to the bottom of the page and not the head?
    Thanks
    Dave

    http://forums.adobe.com/docs/DOC-2964

  • Keep getting java script errors in DW CS3

    I have been using Dreamweaver CS3 and had not had problems up to last month or so. Now I keep getting Java errors and java script errors whenever i try to put a file to my site or even on some task boxes that have undefined in the command box instead of the normal command. I am wondering if downloading product again could help but i worry about licensing problem. It seems like there is no support for CS3 Dreamweaver.
    I resent the fact i may have to upgrade to Dreamweaver CS5. IF I do can I just upgrade Dreamweaver and not the other programs as part of the web design suite? My last upgrade was the CS3 web design suite.
    Gary

    Thanks for the suggestion, I followed the links and instructions and still have same problem. Very frustrating as I cannot get any phone support, actually i was told Dreamweaver CS3 is not being supported anymore, and I was directed to this forum.
    Kind of makes me not like Adobe and I am going to search for another web building program. Once I calm down I may consider just upgrading to CS 5 Dreamweaver. Do I have to upgrade the entire Web Design suite or can I just upgrade Dreamweaver?
    Another option is to try and reinstall but I worry I can run into licensing problems (I think I ran into this before as destop and laptop crashed and had to reinstall).
    Gary

Maybe you are looking for