Please can someone make this code use the font 'Veranda'. I cannot produce code and don't know how to do it. Thanks
Code:</style> <script type="text/javascript"> document.getElementById("myP").style.fontFamily = "Impact,Charcoal,sans-serif"; /* NOT CURRENTLY USED var thedate = new Date(); var dayofweek = thedate.getDay(); var hourofday = thedate.getHours(); var GMT = new Date().getTimezoneOffset(); var offsetGMT = -5 * new Date().getTimezoneOffset()/60; */ // Sun=0 1 2 3 4 5 Sat=6 var DayOfWeek = new Array('Weekend','Monday','Tuesday','Wednesday','Thursday','Friday','Weekend'); var NoShow = 'No Show Scheduled<br />for KSWH'; var DH = new Array (7); for (d=0; d<7; d++) { DH[d] = new Array (24); for (h=0; h<24; h++) { DH[d][h] = ''; } } DH[1][09] = '<img src="Iimage.jpg" width=100 height=80 border=1> Dean sharp breakfast show 9am to 12pm'; DH[1][10] = '<img src="Iimage.jpg" width=100 height=80 border=1> Dean sharp breakfast show 9am to 12pm'; DH[1][11] = '<img src="Iimage.jpg" width=100 height=80 border=1> Dean sharp breakfast show 9am to 12pm'; DH[1][12] = '<img src="Iimage.jpg" width=100 height=80 border=1> cheryle dale 12pm to 4pm'; DH[1][13] = '<img src="Iimage.jpg" width=100 height=80 border=1> cheryle dale 12pm to 4pm'; DH[1][14] = '<img src="Iimage.jpg" width=100 height=80 border=1> cheryle dale 12pm to 4pm'; DH[1][15] = '<img src="Iimage.jpg" width=100 height=80 border=1> cheryle dale 12pm to 4pm'; DH[1][16] = '<img src="Iimage.jpg" width=100 height=80 border=1> Jessie brooke evening show 4pm to 8pm'; DH[1][17] = '<img src="Iimage.jpg" width=100 height=80 border=1> Jessie brooke evening show 4pm to 8pm'; DH[1][18] = '<img src="Iimage.jpg" width=100 height=80 border=1> Jessie brooke evening show 4pm to 8pm'; DH[1][19] = '<img src="Iimage.jpg" width=100 height=80 border=1> Jessie brooke evening show 4pm to 8pm'; DH[1][20] = '<img src="Iimage.jpg" width=100 height=80 border=1> Zenith classic rock 8pm to 10pm'; DH[1][21] = '<img src="Iimage.jpg" width=100 height=80 border=1> Zenith classic rock 8pm to 10pm'; // Add more when schedule is known. Note: there may be better ways to do this when information is known. function OnNow() { var thedate = new Date(); var dayofweek = thedate.getDay(); var hourofday = thedate.getHours(); // alert(dayofweek+':'+hourofday+'<br />'+DH[dayofweek][hourofday]); var showOn = DH[dayofweek][hourofday]; if (showOn == '') { showOn = thedate+'\n\nNo Show Scheduled'; } alert(showOn); } function NowON() { var thedate = new Date(); var dayofweek = thedate.getDay(); var hourofday = thedate.getHours(); var showOn = DH[dayofweek][hourofday]; if (showOn == '') { showOn = thedate+'<p />No Show Scheduled'; } document.getElementById('NowOn').innerHTML = showOn; } </script> <strong></strong> </head> <BODY onLoad="NowON()"> <!-- Unhide this if table display desired <script type="text/javascript"> document.write(TableStationSchedule()) </script> --> <script type="text/javascript"> document.write(NowON()); </script> <div id='NowOn' onClick="NowON()">Destiny106 FM ON AIR NOW</div> </body> </div>



Reply With Quote


