
			//Set the id names of tab containers (without a number at the end)
			var tablink_idname = new Array("tablink");
			//Set the id name of tabcontentarea (without a number at the end)
			var tabcontent_idname = new Array("tabcontent"); 
			//Set the number of tabs
			var tabcount = new Array("1");
			//Set the Tab wich should load at start
			var loadtabs = new Array("1");
			
			function loadit(frame){
			   if(frame.src != "")
			      window.setTimeout("document.getElementById('loading').style.display='none'", 5000);
			}
			
			function pestmapload(url){
				a = document.getElementById('pestModSm').src;
				if (a == 'javascript:void(0);'){
					   document.getElementById('pestModSm').src=url;
				}
			}
			
			function loadmap(url){
				
				document.getElementById('weatherModSm').setAttribute("src", url);
			}
			
			function toggleMe(a){
			  var e=document.getElementById(a);
			  if(!e)return true;
			  if(e.style.height=="224px"){
			    e.style.height="auto"
				document.getElementById('toggleBtn').value="Collapse";
			  } else {
			    e.style.height="224px"
				document.getElementById('toggleBtn').value="Read More";
			  }
			  return true;
			}


