$(function() { 
  $('a.newwin').click(function(){
    window.open(this.href, '', '');
    return false;
  });
})


//別窓
//window.onload = function() {
//var node_a = document.getElementsByTagName('a');
//for (var i in node_a) {
//if (node_a[i].className == 'newwin') {
//node_a[i].onclick = function() {
//};
//}
//}
//};

//折り畳み
function show_hide(src){
	if(document.getElementById){
		obj=document.getElementById(src);
	}else if(document.all){
		obj=document.all(src);
	}
	if(obj.style.display==''){
		obj.style.display='none';
	}else{
		obj.style.display='';
	}
}
