        function goforit(select)
        	{
                var cntr;
        		for(cntr = 0; cntr < select.options.length; cntr++)
        		if(select.options[cntr].selected)
                {
                if (select.options[cntr].value=='none')
                    { 
                        document.showcodeform.desc.value='Code details....';
                    }
                if (select.options[cntr].value=='popups')
                    { 
                        window.open('popups.js','popwin','toolbars=no,menubar=no,resizable=yes,scrollbars=no,width=700,height=200');
                        document.showcodeform.desc.value='Valid options for this function are:\nmenubar (yes,no)\nstatus (yes,no)\nscrollbars (yes,no)\nresizable (yes,no)\nwidth (integer)\nheight (integer)\ntoolbar (yes,no)\nlocation (yes,no)\ndirectories (yes,no)';
                    }
                if (select.options[cntr].value=='popdowns')
                    { 
                        window.open('popdowns.js','popwin','toolbars=no,menubar=no,resizable=yes,scrollbars=no,width=700,height=200');
                        document.showcodeform.desc.value='Same valid options as pop-up windows.\nWe just add a couple of js methods to put the window into background focus, and then bring the current window to the front';
                    }
                if (select.options[cntr].value=='redirect')
                    { 
                        window.open('redirect.js','popwin','toolbars=no,menubar=no,resizable=yes,scrollbars=no,width=700,height=200');
                        document.showcodeform.desc.value='Simple js function - you call it and pass it the web address you want to go to.\nExample:\n<a href=\"javascript:jsfwd(\'http://localhost\');\"';
                    }
                if (select.options[cntr].value=='sizemove')
                    { 
                        window.open('sizemove.js','popwin','toolbars=no,menubar=no,resizable=yes,scrollbars=no,width=700,height=200');
                        document.showcodeform.desc.value='An example of how to resize and-or move an existing window with javascript.  This version sizes the window to half the height and width of the screen, and then IF it can detect the current position of the browser, it will move the top, left corner of the window to the middle of the screen.  Otherwise it will move the window to the top, left corner of the display.';
                    }
                if (select.options[cntr].value=='bdetect')
                    { 
                        window.open('bdetect.js','popwin','toolbars=no,menubar=no,resizable=yes,scrollbars=no,width=700,height=200');
                        document.showcodeform.desc.value='The values in this can be changed - however you must know the values to replace them with!!';
                    }
                if (select.options[cntr].value=='emlvalid')
                    { 
                        window.open('emlvalid.js','popwin','toolbars=no,menubar=no,resizable=yes,scrollbars=yes,width=700,height=200');
                        document.showcodeform.desc.value='HTML forms can be validated before submission - here is both an example of a script that can be found on javascriptsource.com, as well as a way to run simple validation on an email submission form.';
                    }
                if (select.options[cntr].value=='cssdhtml')
                    { 
                        window.open('cssdhtml.js','popwin','toolbars=no,menubar=no,resizable=yes,scrollbars=yes,width=700,height=400');
                        document.showcodeform.desc.value='This is an example of how javascript is used in conjuction with Cascading Style Sheets to produce a Dynamic HTML result.';
                    }
                }
            }
