Forum Moderators: open
I have checked the tools/colors option on the browser and it is not connected to the colors.
I'm at a loss....any thoughts.
thanks in advance.
here's my code:
<!-- saved from url=(0013)about:internet -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>DRC Simulation Lesson Menu</title>
<script type="text/javascript">
<!-- Begin
function fullScreen(theURL) {
window.open(theURL, '', 'fullscreen=yes, scrollbars=no');
}
// End -->
</script>
<script language="JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW ¦¦ innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
</script>
</head>
<body bgcolor="#000066" text="#FFFFFF" link="#FFFFFF" vlink="#00FFFF" alink="#00FF00" fullscreen="yes" scroll'no" leftmargin="0" topmargin="0" >
<div align="center">
<p> </p>
<p align="center"><font size="6" color="#FFFF00"><b><font face="Verdana, Arial, Helvetica, sans-serif">FiOS
Video For Dispatch</font></b></font></p>
<p align="center"><font size="6" color="#FFFF00"><b><font face="Verdana, Arial, Helvetica, sans-serif">CSG/ACSR
Application Training</font></b></font></p>
</div>
<p align="center"><img src="VZ_LOGO.jpg" width="236" height="118">
<table width="55%" border="0" align="center" bgcolor="#000066">
<tr>
<td colspan="2">
<div align="center">
<p> </p>
<p><font color="#333333"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="4" color="#FFFFFF">Click
on one of the topics below.</font></b></font><br>
<br>
</p>
</div>
</td>
</tr>
<tr>
<td width="6%"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" >1.</font></td>
<td width="94%"><a href="javascript:void(0);" onClick="fullScreen('CSGLogon_off_Walkthrough_Ver1_08.htm');"><font face="Verdana, Arial, Helvetica, sans-serif" size="4">Logon/off
- Walkthrough</font></a></td>
</tr>
<tr>
<td width="6%"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" >2.</font></td>
<td width="94%"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" ><a href="javascript:void(0);" onClick="fullScreen('CSGReview_Order_Wlkthru_Ver1_08.htm');">
Reviewing An Order - Walkthrough</a></font></td>
</tr>
<tr>
<td width="6%"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" >3.</font></td>
<td width="94%"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" ><a href="javascript:void(0);" onClick="fullScreen('CSGCompleting_Order_Wlkthru_Ver1_08.htm');">Completing
An Order - Walkthrough</a></font></td>
</tr>
<tr>
<td width="6%"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" >4.</font></td>
<td width="94%"><a href="javascript:void(0);" onClick="fullScreen('CSGReview_Order_Practice_Ver1_08.htm');"><font face="Verdana, Arial, Helvetica, sans-serif" size="4">Reviewing
An Order - Practice</font></a></td>
</tr>
<tr>
<td width="6%"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" >5.</font></td>
<td width="94%"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" ><a href="javascript:void(0);" onClick="fullScreen('CSGCompleting_Order_Practice_One_Ver1_08.htm');">Competing
An Order - Practice 1</a></font></td>
</tr>
<tr>
<td width="6%"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" >6.</font></td>
<td width="94%"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" ><a href="javascript:void(0);" onClick="fullScreen('CSGCompleting_Order_Practice_two_Ver1_08.htm');">Competing
An Order - Practice 2</a></font></td>
</tr>
<tr>
<td width="6%"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" >7.</font></td>
<td width="94%"><font face="Verdana, Arial, Helvetica, sans-serif" size="4" ><a href="javascript:void(0);" onClick="fullScreen('CSGAssessment_Part1_Ver1_02.htm');">Assessment</a></font></td>
</tr>
</table>
<FORM>
<input type=button align="center" value="EXIT" onClick="javascript:window.close();" name="Exit">
</FORM>
</body>
</html>
<a [b]href="javascript:void(0);"[/b] onClick="fullScreen('CSGLogon_off_Walkthrough_Ver1_08.htm');">Logon/off - Walkthrough</a>
The above snippet is one of the links in your page (I removed the font tag for clarity). As you can see, the actual link is to
javascript:void(0); - as it is for all the links on the page. So, click one, and as all the links are the same, all become visited links. The solution is to reproduce the link in the Javascript code within the standard href, and then add a
return false; to the onclick event so the page doesn't get called twice. This has the double advantage of helping search engines and users with Javascript disabled to follow your site links correctly. Try this: <a [b]href="CSGLogon_off_Walkthrough_Ver1_08.htm"[/b] onClick="fullScreen('CSGLogon_off_Walkthrough_Ver1_08.htm');[b]return false;[/b]">Logon/off - Walkthrough</a>
You had a wonderful Idea and it does work, however, I have the need to launch the link being called in a new window and your answer does not allow me to do that. Part of the problem I now find is how to refresh the menu page when I come back to it from my other window...and don't know it that is possible. I do appreciate your help (as well as others) and it has led me down another path, not working completely yet either, but at least you got me to thinking :-)
bmlove