Len
07-03-2003, 07:11 PM
I have just started learning Javascript & I have come 2 a grinding halt with linking... below is the script I'm using on my website which, depending on the time of day, it shows a certain image. What I really want is also to link that certain image to another webpage....any help GREATLY appreciated
<SCRIPT LANGUAGE = 'JavaScript'><!--
var date = new Date();
var hours = date.getHours();
var weekday = date.getDay();
var minutes = date.getMinutes();
if ( (weekday < 1) && (hours >= 7) && (hours < 10) )
document.write("<IMG SRC='images/tod_tbm_lj.gif'>" )
else if ( (weekday < 1) && (hours >= 10) && (hours < 12) )
document.write("<IMG SRC='images/tod_wendshow.gif'>" )
else if ( (weekday < 1) && (hours >= 12) && (hours < 16) )
document.write("<IMG SRC='images/tod_t40.gif'>" )
else if ( (weekday < 1) && (hours >= 16) && (hours < 20) )
document.write("<IMG SRC='images/tod_dees.gif'>" )
else if (weekday < 1)
document.write("<IMG SRC='images/tod_tbm.gif'>" )
else if ( (weekday > 5) && (hours >= 7) && (hours < 12) )
document.write("<IMG SRC='images/tod_tbm_lj.gif'>" )
else if ( (weekday > 5) && (hours >= 12) && (hours < 18) )
document.write("<IMG SRC='images/tod_tbm_spello.gif'>" )
else if ( (weekday > 5) && (hours >= 18) && (hours < 22) )
document.write("<IMG SRC='images/tod_hothits.gif'>" )
else if (weekday > 5)
document.write("<IMG SRC='images/tod_tbm.gif'>" )
else if ( (weekday >= 5 ) && (weekday < 6) && (hours >= 21) )
document.write("<IMG SRC='images/tod_prock.gif'>")
else if ( (hours >= 6) && (hours < 9) )
document.write("<IMG SRC='images/tod_bb_lj.gif'>")
else if ( (hours >= 9) && (hours < 10) && (minutes >= 0) && (minutes < 31) )
document.write("<IMG SRC='images/tod_hot6_lj.gif'>")
else if ( (hours >= 9) && (hours < 12) )
document.write("<IMG SRC='images/tod_tbm_lj.gif'>")
else if ( (hours >= 12) && (hours < 13) )
document.write("<IMG SRC='images/tod_request_spello.gif'>")
else if ( (hours >= 13) && (hours < 16) )
{xonair="tod_tbm_spello"}
else if ( (hours >= 16) && (hours < 17) && (minutes >= 0) && (minutes < 20))
document.write("<IMG SRC='images/tod_net4_spello.gif'>")
else if ( (hours >= 16) && (hours < 18) )
document.write("<IMG SRC='images/tod_tbm_spello.gif'>")
else if ( (hours >= 18) && (hours < 21) )
document.write("<IMG SRC='images/tod_hot30.gif'>")
else
document.write("<IMG SRC='images/tod_tbm.gif'>");
//--></SCRIPT>
</head>
<body>
<div id="Layer42" style="position:absolute; left:462px; top:257px; width:68px; height:62px; z-index:73">
<script language=JavaScript>
document.write('<img src="http://www.mixxfm.com.au/Mallee/images/' + xonair + '.gif">');
</script>
</div>
</body>
</html>
<SCRIPT LANGUAGE = 'JavaScript'><!--
var date = new Date();
var hours = date.getHours();
var weekday = date.getDay();
var minutes = date.getMinutes();
if ( (weekday < 1) && (hours >= 7) && (hours < 10) )
document.write("<IMG SRC='images/tod_tbm_lj.gif'>" )
else if ( (weekday < 1) && (hours >= 10) && (hours < 12) )
document.write("<IMG SRC='images/tod_wendshow.gif'>" )
else if ( (weekday < 1) && (hours >= 12) && (hours < 16) )
document.write("<IMG SRC='images/tod_t40.gif'>" )
else if ( (weekday < 1) && (hours >= 16) && (hours < 20) )
document.write("<IMG SRC='images/tod_dees.gif'>" )
else if (weekday < 1)
document.write("<IMG SRC='images/tod_tbm.gif'>" )
else if ( (weekday > 5) && (hours >= 7) && (hours < 12) )
document.write("<IMG SRC='images/tod_tbm_lj.gif'>" )
else if ( (weekday > 5) && (hours >= 12) && (hours < 18) )
document.write("<IMG SRC='images/tod_tbm_spello.gif'>" )
else if ( (weekday > 5) && (hours >= 18) && (hours < 22) )
document.write("<IMG SRC='images/tod_hothits.gif'>" )
else if (weekday > 5)
document.write("<IMG SRC='images/tod_tbm.gif'>" )
else if ( (weekday >= 5 ) && (weekday < 6) && (hours >= 21) )
document.write("<IMG SRC='images/tod_prock.gif'>")
else if ( (hours >= 6) && (hours < 9) )
document.write("<IMG SRC='images/tod_bb_lj.gif'>")
else if ( (hours >= 9) && (hours < 10) && (minutes >= 0) && (minutes < 31) )
document.write("<IMG SRC='images/tod_hot6_lj.gif'>")
else if ( (hours >= 9) && (hours < 12) )
document.write("<IMG SRC='images/tod_tbm_lj.gif'>")
else if ( (hours >= 12) && (hours < 13) )
document.write("<IMG SRC='images/tod_request_spello.gif'>")
else if ( (hours >= 13) && (hours < 16) )
{xonair="tod_tbm_spello"}
else if ( (hours >= 16) && (hours < 17) && (minutes >= 0) && (minutes < 20))
document.write("<IMG SRC='images/tod_net4_spello.gif'>")
else if ( (hours >= 16) && (hours < 18) )
document.write("<IMG SRC='images/tod_tbm_spello.gif'>")
else if ( (hours >= 18) && (hours < 21) )
document.write("<IMG SRC='images/tod_hot30.gif'>")
else
document.write("<IMG SRC='images/tod_tbm.gif'>");
//--></SCRIPT>
</head>
<body>
<div id="Layer42" style="position:absolute; left:462px; top:257px; width:68px; height:62px; z-index:73">
<script language=JavaScript>
document.write('<img src="http://www.mixxfm.com.au/Mallee/images/' + xonair + '.gif">');
</script>
</div>
</body>
</html>