			function checkValue(intFlag,strValue,strType,intElement) {

				if ( intFlag == 0 ) {
					// onFocus
					if ( document.forms['Search'].elements[intElement].value == strValue) {
						document.forms['Search'].elements[intElement].value="";
					}
				} else {
					// onBlur
					if ( document.forms['Search'].elements[intElement].value == "") {
						document.forms['Search'].elements[intElement].value=strValue;
					}
				}

			}

			function submitSearch(refKeyCode) {

				if ( refKeyCode == 13 ) {
					if ( ( document.forms['Search'].elements['String'].value != "" ) && ( document.forms['Search'].elements['String'].value != "Search" ) ) {
						alert("Submit form");
						//document.forms['Search'].submit();
					}
				}

			}

			function ViewStories() {
			
				var strTopic = document.forms['storytopics'].elements['topics'].options[document.forms['storytopics'].elements['topics'].selectedIndex].value;
				if ( strTopic != "" ) {
					window.location = "/story.asp?Action=1&Search=" + strTopic;
				} else {
					alert("Please select a valid topic first.");
				}
			
			}
