

function query (n){
	var dt = getElementById(n+'_q_dt');
	var dd = getElementById(n+'_q_dd');
	if(dd.style.display == "none"){
		dt.style.width = "20%";
		dd.style.display = "block";
	}else{
		dt.style.width = "95%";
		dd.style.display = "none";
	}
}
function getElementById(e){
  if(typeof(e)=='string') {
    if(document.getElementById) e=document.getElementById(e);
    else if(document.all) e=document.all[e];
    else e=null;
  }
  return e;
}



//比較リスト表示
function open_hl(url) {
	if (navigator.cookieEnabled != true) {
		window.alert('Cookieを有効にしてください');
	} else if (url != null) {
		window.name = 'parent';
        	var win = window.open('', 'hl', 'toolbar=yes,location=yes,scrollbars=yes,menubar=yes,resizable=yes,width=930');
		win.document.open(); 
			win.focus();
        	win.location.href=url;
	}
}
