<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload(); 
}

MM_reloadPage(true);

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function _alert(msg){ alert(msg) };

function _undefined() { alert('undefined link.'); }

 
//here you place the ids of every element you want.
var ids = new Array();
var browserType;
var divs;
var lastshow;
var lasthide;

if (document.layers) {browserType = "nn4"}
if (document.all) {browserType = "ie"}
if (window.navigator.userAgent.toLowerCase().match("gecko")) {browserType= "gecko"}

function getobj (obj){
	
  if (browserType == "gecko" )
     return document.getElementById(obj);
  else if (browserType == "ie")
     return document.all[obj];
  else
     return document.layers[obj];	
}

function gettags(){
	
 if (browserType == "gecko" )
    document.divs = document.getElementsByTagName('div');
  else if (browserType == "ie")
    document.divs = document.all.tags['div'];
  else
    document.divs = document.layers;	

for (var i = 0; i < divs.length; i++) {
	 id_val = divs[i].id.value;
	 alert(id_val);
   if (id_val.indexOf('a') != -1) 
    ids[ids.length++] = id_val; 
  }
}

function hide(obj) {
  document.thisLayer = getobj(obj);
  document.thisLayer.style.display = "none";
  lasthide = obj;
}

function show(obj) {
  document.thisLayer = getobj(obj);
  document.thisLayer.style.display = "block";
  lastshow = obj;
}

function switchid(obj){	
    
	if ((lastshow == obj) && (lasthide == obj)){
	  lasthide = ""; lastshow = "";
	}
	
	if (lastshow) hide(lastshow);
     
	if (lasthide != obj) show(obj);
}
/*
var _gaq = _gaq || []; 
_gaq.push(['_setAccount', 'UA-13074577-1']); 
_gaq.push(['_trackPageview']); 

(function() { 
  var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; 
  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; 
   (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga); 
})(); 
*/
//-->