<!-- VIEW SELECTED INFORMATION --> <!-- This goes into the HEAD of the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2001, Sandeep Gangadharan --> <!-- For more free scripts go to http://sivamdesign.com/scripts/ --> <!-- var message=new Array(); message[0] = "When you click the drop down list above you will be shown all the newly added scripts in this collection. Just select any one script and its corresponding explanatory content will automatically be shown in this textarea along with the Script Category under which it is included as also the scripts number in the list. By clicking the 'Go' button you will be taken straight to the chosen script!" message[1] = "Category = Clocks & Timers - Script #6:\nThis is a simple stopwatch script. It has the standard Start, Stop and Reset functions. It is not 100% accurate but is good enough to time most tasks!" message[2] = "Category = User Details - Script #2:\nThis script is very much like the one above except that it is more personalised as it asks the users to type in their name and then shows the system details along with the name in a dialog box. So this script makes your web page interactive as well as adds to the fun factor!" message[3] = "Category = Miscellaneous - #6:\nUsing this script you can put up a unique slide show of photos or other images for your viewers. It also has a textarea that can contain explanatory text describing each slide! It's novelty lies in the fact that your viewers can choose to manually run the slides or go in for the Auto option where the slides move up automatically. There are 4 buttons to choose from: Next, Back, Restart or Auto. Though this script preloads the images, using the Auto feature might still cause some lag between the text and images for those who have slow web connections." message[4] = "Category = Miscellaneous - #7:\nThis script allows your visitors to E-mail the current page to a friend or friends. On clicking the button the visitor will be prompted to fill in their friend/s E-mail address and also their own name whereupon their default E-mail program will open with all the relevant details, including the Subject line, typed in and ready to send. All the visitor will then be needed to do is to click the 'Send Mail' button. The visitor can also send the page to as many recipients as he or she wants by typing in as many E-mail address as he/she wants, remembering to add a comma in between each different address. Simple and time saving!" message[5] = "Category = Miscellaneous - #8:\nWith the help of this script you can put up information in a very concise manner so as to take up as little space as possible on your web pages. When any item or topic in the drop down list is selected its corresponding explanatory text or information is automatically displayed in the textarea below. In the example that is included, all the latest scripts added to this site are listed so that when any script is chosen from among the list it's description is displayed below in the textarea." message[6] = "Category = Navigation - #4:\nThis drop-down navigation menu includes a textarea inside which explanatory text regarding the respective links are shown when any of the links are selected. This helps the users decide whether or not to go to those links after the perusal of the explanatory text." function viewInfo() { if (document.dpdw.choice.selectedIndex==0) { document.dpdw.text.value=message[0]; } if (document.dpdw.choice.selectedIndex==1) { document.dpdw.text.value=message[1]; } if (document.dpdw.choice.selectedIndex==2) { document.dpdw.text.value=message[2]; } if (document.dpdw.choice.selectedIndex==3) { document.dpdw.text.value=message[3]; } if (document.dpdw.choice.selectedIndex==4) { document.dpdw.text.value=message[4]; } if (document.dpdw.choice.selectedIndex==5) { document.dpdw.text.value=message[5]; } if (document.dpdw.choice.selectedIndex==6) { document.dpdw.text.value=message[6]; } } //--> </script> </head> <!-- Note the script in the BODY tag --> <body onLoad="document.dpdw.text.value=message[0];"> <!-- This goes into the BODY of the html file --> <table bgcolor="#000000" width="390" border="1" bordercolor="#ffff00" align="center"> <tr> <td align="center"> <font face="verdana, arial, helvetica, sans-serif" size="2" color="#ffff00"> <b>* NEW SCRIPTS *</b> </font> </td> </tr> <tr> <td align="center"> <form name="dpdw"> <select name="choice" onChange=viewInfo()> <option selected value=0>Click here to see the list of newly added scripts....&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</option> <option value=1>1. Stopwatch</option> <option value=2>2. Personalised User Info</option> <option value=3>3. Auto/Manual Slide Show</option> <option value=4>4. Refer Page Button</option> <option value=5>5. View Selected Info</option> <option value=6>6. Drop Down Menu With Explanatory Text</option> </select><br /> <textarea name="text" rows="9" cols="40" wrap="virtual"></textarea> </form> </td> </tr> </table>