I am doing a site for a computer store and I have come across a couple of errors that I can't figure out, if someone could help me that would be greatly appreciated.
Here is the code: (At the end of this post, I'll describe the errors that I am getting)
<%@Language = VBScript%>
<html>
<head>
<title>Shoreline Computer Systems</title>
<link rel=stylesheet href="Shoreline.css" type="text/css">
<script type="text/javascript">
function MakeMain() //Switch to Main Content
{
If (document.getElementById("MainContent"
.style.visibility == "hidden"
{
document.getElementById("SideContent"
.style.visibility = "hidden";
document.getElementById("SideContentTop"
.style.visibility = "hidden";
document.getElementById("SideContentMiddle"
.style.visibility = "hidden";
document.getElementById("SideContentBottom"
.style.visibility = "hidden";
document.getElementById("SideContentTopText"
.style.visibility = "hidden";
document.getElementById("MainContent"
.style.visibility = "visible";
}
}
function MakeSide(Content) //Switch to Side Content
{
If (document.getElementById("MainContent"
.style.visibility == "visible"
{
document.getElementById("SideContent"
.style.visibility = "visible";
document.getElementById("SideContentTop"
.style.visibility = "visible";
document.getElementById("SideContentMiddle"
.style.visibility = "visible";
document.getElementById("SideContentBottom"
.style.visibility = "visible";
document.getElementById("SideContentTopText"
.style.visibility = "visible";
document.getElementById("MainContent"
.style.visibility = "hidden";
}
switch(Content)
{
case(Content=="Tablet"
:
document.Computer.src = "Images/Tablet-pc.gif";
document.getElementById("SideContentTopText"
.innerHTML = "<div align="right"><font face="Courier" size=4>Tablet PC | Specifications</font></div>";
document.getElementById("SideContentBottom"
.innerHTML = "<div align="right"><font face="Courier" size=5><b>Starting at $2050</b></font></div>";
break
case(Content=="Workstation"
:
document.Computer.src = "Images/Workstation.gif";
document.getElementById("SideContentTopText"
.innerHTML = "<div align="right"><font face="Courier" size=4>Workstation | Specifications</font></div>";
document.getElementById("SideContentBottom"
.innerHTML = "<div align="right"><font face="Courier" size=5><b>Starting at $800</b></font></div>";
break
case(Content=="Notebook"
:
document.Computer.src = "Images/Notebook.gif";
document.getElementById("SideContentTopText"
.innerHTML = "<div align="right"><font face="Courier" size=4>Notebook | Specifications</font></div>";
document.getElementById("SideContentBottom"
.innerHTML = "<div align="right"><font face="Courier" size=5><b>Starting at $1150</b></font></div>";
break
}
}
</script>
</head>
<body bgcolor="#ffffff">
<%
Sub RandomMessage()
Dim objx, objy, message, lines
Set objx=Server.CreateObject("Scripting.FileSystemObject"
Set objy=objx.OpenTextFile("Sayings.txt", 2)
lines = 0
Do While Not objy.AtEndOfStream
message = objy.ReadLine
lines = lines + 1
loop
randomize
lines = Int(Rnd * lines) + 1
For i = 1 to lines
message = objy.ReadLine
Next
Response.Write("<b><font size='4'>" + message + "</font></b>"
End Sub
%>
<!--Set-up the background-->
<div id="Background"></div>
<div id="TopBackground" class="TransDown">
<img src="Images/TopBackground.gif" alt="" height="100%" width="100%" border="0"></div>
<div id="TopMenuBar">
<img src="Images/top-bar.gif" alt="" height="100%" width="100%" border="0">
<div id="TopTextNav">
<a href="Networking.html" target="ContentFrame" onClick="MakeMain();">Networking</a> | <a href=" Login</a> | <a href="Support.html" target="ContentFrame" onClick="MakeMain();">Support</a> | <a href=" Design</a> | <a href="AboutUs.html" target="ContentFrame" onClick="MakeMain();">About Us</a></div>
</div>
<!--Set-up the Left Menu-->
<div id="LeftMenuBar" class="BoxTrans">
<img src="Images/left-box.gif" alt="" height="100%" width="100%" border="0">
<div id="Home" style="position: absolute; top: 1px; left: 1px; width: 100%; height: 18%; visibility: visible">
<div align="center">
<img src="Images/Tower.gif" alt="" height="100%" width="75%" border="0">
</div>
</div>
<div id="HomeText" style="position: absolute; top: 18%; left: 1px; width: 100%; height: 7%; visibility: visible">
<div align="center">
<a href="Home.html" target="ContentFrame" onClick="MakeMain();">Home</a>
</div>
</div>
<div id="Tablet" style="position: absolute; top: 25%; left: 1px; width: 100%; height: 18%; visibility: visible">
<div align="center">
<img src="Images/Tablet-PC.gif" alt="" height="100%" width="75%" border="0">
</div>
</div>
<div id="TabletText" style="position: absolute; top: 43%; left: 1px; width: 100%; height: 7%; visibility: visible">
<div align="center">
<a href="Tablet.html" target="SideContentFrame" onClick="MakeSide('Tablet');">Tablet PC</a>
</div>
</div>
<div id="Workstation" style="position: absolute; top: 50%; left: 1px; width: 100%; height: 18%; visibility: visible">
<div align="center">
<img src="Images/Workstation.gif" alt="" height="100%" width="75%" border="0">
</div>
</div>
<div id="WorkstationText" style="position: absolute; top: 68%; left: 1px; width: 100%; height: 7%; visibility: visible">
<div align="center">
<a href="Workstation.html" target="SideContentFrame" onClick="MakeSide('Workstation');">Workstation</a>
</div>
</div>
<div id="Notebook" style="position: absolute; top: 75%; left: 1px; width: 100%; height: 18%; visibility: visible">
<div align="center">
<img src="Images/Notebook.gif" alt="" height="100%" width="75%" border="0">
</div>
</div>
<div id="NotebookText" style="position: absolute; top: 93%; left: 1px; width: 100%; height: 7%; visibility: visible">
<div align="center">
<a href="Notebook.html" target="SideContentFrame" onClick="MakeSide('Notebook');">Notebook</a>
</div>
</div>
</div>
<!--Set-up the scrolling sayings box-->
<div id="TopDialogBar">
<img src="Images/dialog-bar.gif" alt="" height="100%" width="100%" border="0"></div>
<div id="DialogBox" class="BoxTrans">
<img src="Images/dialog.gif" alt="" height="100%" width="100%" border="0">
<div id="ScrollText">
<marquee><% RandomMessage() %> </marquee></div>
</div>
<!--Set-up the Content DIVS-->
<div id="MainContent">
<iframe allowtransparency="true" name="ContentFrame" src="Home.html" frameborder="0" height="100%" width="100%"></iframe>
</div>
<div id="SideContent">
<div id="SideContentTop" style="position: absolute; top: 1px; left: 1px; width: 100%; height: 25%; visibility: hidden">
<img name="Computer" src="" alt="" height="100%" width="20%" border="0">
<div id="SideContentTopText" style="position: absolute; top: 1px; left: 1px; width: 100%; height: 100%; visibility: hidden"></div>
</div>
<div id="SideContentMiddle" style="position: absolute; top: 25%; left: 1px; width: 100%; height: 70%; visibility: hidden">
<iframe allowtransparency="true" name="SideContentFrame" src="" frameborder="0" height="100%" width="100%"></iframe>
</div>
<div id="SideContentBottom" style="position: absolute; top: 95%; left: 1px; width: 100%; height: 5%; visibility: hidden"></div>
</div>
<!--Set-up the Bottom Menu-->
<div id="BottomMenuBar">
<img src="Images/top-bar.gif" alt="" height="100%" width="100%" border="0">
<div id="BottomTextNav">
<div align="right">
<a href="Networking.html" target="ContentFrame" onClick="MakeMain();">Networking</a> | <a href=" Login</a> | <a href="Support.html" target="ContentFrame" onClick="MakeMain();">Support</a> | <a href=" Design</a> | <a href="AboutUs.html" target="ContentFrame" onClick="MakeMain();">About Us</a></div>
</div>
</div>
<div id="Logo">
<img src="Images/ShorelineLOGO.gif" alt="" height="100%" width="100%" border="0"></div>
<div id="Cubes">
<img src="Images/background-boxes.gif" alt="" height="100%" width="100%" border="0"></div>
</body>
</html>
Ok, I am getting an Expected Semi-Colon error on the line document.Computer.src = "Tablet-PC.gif"; in the function MakeSide, and when I click on any link, I get an Object expected error like it is not finding the functions. This however could be that it is an ASP page which may change the default scripting to VBScript. If this is the case, how do I declare that it is a javascript function and not VBScript within the onClick event?
Here is the code: (At the end of this post, I'll describe the errors that I am getting)
<%@Language = VBScript%>
<html>
<head>
<title>Shoreline Computer Systems</title>
<link rel=stylesheet href="Shoreline.css" type="text/css">
<script type="text/javascript">
function MakeMain() //Switch to Main Content
{
If (document.getElementById("MainContent"
{
document.getElementById("SideContent"
document.getElementById("SideContentTop"
document.getElementById("SideContentMiddle"
document.getElementById("SideContentBottom"
document.getElementById("SideContentTopText"
document.getElementById("MainContent"
}
}
function MakeSide(Content) //Switch to Side Content
{
If (document.getElementById("MainContent"
{
document.getElementById("SideContent"
document.getElementById("SideContentTop"
document.getElementById("SideContentMiddle"
document.getElementById("SideContentBottom"
document.getElementById("SideContentTopText"
document.getElementById("MainContent"
}
switch(Content)
{
case(Content=="Tablet"
document.Computer.src = "Images/Tablet-pc.gif";
document.getElementById("SideContentTopText"
document.getElementById("SideContentBottom"
break
case(Content=="Workstation"
document.Computer.src = "Images/Workstation.gif";
document.getElementById("SideContentTopText"
document.getElementById("SideContentBottom"
break
case(Content=="Notebook"
document.Computer.src = "Images/Notebook.gif";
document.getElementById("SideContentTopText"
document.getElementById("SideContentBottom"
break
}
}
</script>
</head>
<body bgcolor="#ffffff">
<%
Sub RandomMessage()
Dim objx, objy, message, lines
Set objx=Server.CreateObject("Scripting.FileSystemObject"
Set objy=objx.OpenTextFile("Sayings.txt", 2)
lines = 0
Do While Not objy.AtEndOfStream
message = objy.ReadLine
lines = lines + 1
loop
randomize
lines = Int(Rnd * lines) + 1
For i = 1 to lines
message = objy.ReadLine
Next
Response.Write("<b><font size='4'>" + message + "</font></b>"
End Sub
%>
<!--Set-up the background-->
<div id="Background"></div>
<div id="TopBackground" class="TransDown">
<img src="Images/TopBackground.gif" alt="" height="100%" width="100%" border="0"></div>
<div id="TopMenuBar">
<img src="Images/top-bar.gif" alt="" height="100%" width="100%" border="0">
<div id="TopTextNav">
<a href="Networking.html" target="ContentFrame" onClick="MakeMain();">Networking</a> | <a href=" Login</a> | <a href="Support.html" target="ContentFrame" onClick="MakeMain();">Support</a> | <a href=" Design</a> | <a href="AboutUs.html" target="ContentFrame" onClick="MakeMain();">About Us</a></div>
</div>
<!--Set-up the Left Menu-->
<div id="LeftMenuBar" class="BoxTrans">
<img src="Images/left-box.gif" alt="" height="100%" width="100%" border="0">
<div id="Home" style="position: absolute; top: 1px; left: 1px; width: 100%; height: 18%; visibility: visible">
<div align="center">
<img src="Images/Tower.gif" alt="" height="100%" width="75%" border="0">
</div>
</div>
<div id="HomeText" style="position: absolute; top: 18%; left: 1px; width: 100%; height: 7%; visibility: visible">
<div align="center">
<a href="Home.html" target="ContentFrame" onClick="MakeMain();">Home</a>
</div>
</div>
<div id="Tablet" style="position: absolute; top: 25%; left: 1px; width: 100%; height: 18%; visibility: visible">
<div align="center">
<img src="Images/Tablet-PC.gif" alt="" height="100%" width="75%" border="0">
</div>
</div>
<div id="TabletText" style="position: absolute; top: 43%; left: 1px; width: 100%; height: 7%; visibility: visible">
<div align="center">
<a href="Tablet.html" target="SideContentFrame" onClick="MakeSide('Tablet');">Tablet PC</a>
</div>
</div>
<div id="Workstation" style="position: absolute; top: 50%; left: 1px; width: 100%; height: 18%; visibility: visible">
<div align="center">
<img src="Images/Workstation.gif" alt="" height="100%" width="75%" border="0">
</div>
</div>
<div id="WorkstationText" style="position: absolute; top: 68%; left: 1px; width: 100%; height: 7%; visibility: visible">
<div align="center">
<a href="Workstation.html" target="SideContentFrame" onClick="MakeSide('Workstation');">Workstation</a>
</div>
</div>
<div id="Notebook" style="position: absolute; top: 75%; left: 1px; width: 100%; height: 18%; visibility: visible">
<div align="center">
<img src="Images/Notebook.gif" alt="" height="100%" width="75%" border="0">
</div>
</div>
<div id="NotebookText" style="position: absolute; top: 93%; left: 1px; width: 100%; height: 7%; visibility: visible">
<div align="center">
<a href="Notebook.html" target="SideContentFrame" onClick="MakeSide('Notebook');">Notebook</a>
</div>
</div>
</div>
<!--Set-up the scrolling sayings box-->
<div id="TopDialogBar">
<img src="Images/dialog-bar.gif" alt="" height="100%" width="100%" border="0"></div>
<div id="DialogBox" class="BoxTrans">
<img src="Images/dialog.gif" alt="" height="100%" width="100%" border="0">
<div id="ScrollText">
<marquee><% RandomMessage() %> </marquee></div>
</div>
<!--Set-up the Content DIVS-->
<div id="MainContent">
<iframe allowtransparency="true" name="ContentFrame" src="Home.html" frameborder="0" height="100%" width="100%"></iframe>
</div>
<div id="SideContent">
<div id="SideContentTop" style="position: absolute; top: 1px; left: 1px; width: 100%; height: 25%; visibility: hidden">
<img name="Computer" src="" alt="" height="100%" width="20%" border="0">
<div id="SideContentTopText" style="position: absolute; top: 1px; left: 1px; width: 100%; height: 100%; visibility: hidden"></div>
</div>
<div id="SideContentMiddle" style="position: absolute; top: 25%; left: 1px; width: 100%; height: 70%; visibility: hidden">
<iframe allowtransparency="true" name="SideContentFrame" src="" frameborder="0" height="100%" width="100%"></iframe>
</div>
<div id="SideContentBottom" style="position: absolute; top: 95%; left: 1px; width: 100%; height: 5%; visibility: hidden"></div>
</div>
<!--Set-up the Bottom Menu-->
<div id="BottomMenuBar">
<img src="Images/top-bar.gif" alt="" height="100%" width="100%" border="0">
<div id="BottomTextNav">
<div align="right">
<a href="Networking.html" target="ContentFrame" onClick="MakeMain();">Networking</a> | <a href=" Login</a> | <a href="Support.html" target="ContentFrame" onClick="MakeMain();">Support</a> | <a href=" Design</a> | <a href="AboutUs.html" target="ContentFrame" onClick="MakeMain();">About Us</a></div>
</div>
</div>
<div id="Logo">
<img src="Images/ShorelineLOGO.gif" alt="" height="100%" width="100%" border="0"></div>
<div id="Cubes">
<img src="Images/background-boxes.gif" alt="" height="100%" width="100%" border="0"></div>
</body>
</html>
Ok, I am getting an Expected Semi-Colon error on the line document.Computer.src = "Tablet-PC.gif"; in the function MakeSide, and when I click on any link, I get an Object expected error like it is not finding the functions. This however could be that it is an ASP page which may change the default scripting to VBScript. If this is the case, how do I declare that it is a javascript function and not VBScript within the onClick event?