function expand(a){
	
  /* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Ultimater, Mr J :: http://www.webdeveloper.com/forum/showthread.php?t=77389 */

  var e=document.getElementById(a);
 // if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block"
  } else {
    e.style.display="none"
  }
 //return true;
}


function openWin(a,b){
	
 var n=document.getElementById(b);

 window.open(a, '_blank');

 n.options[0].selected=true;

}
 


