function detailwindow(url,tate,yoko){
   detail = window.open(url, "window" , "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=" + yoko + ",height=" + tate ); 
   if (navigator.appName == "Netscape") detail.focus();
}

function det_win2(name,s_switch){
	var win_w = screen.availWidth / 2 - (552 / 2);
	var win_h = screen.availHeight / 2 - (391 / 2);
	
	if ("undefined" == typeof(s_switch) ) { s_switch = 'no'; }
   detail = window.open("top_popup/"+name+".html", name , "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+ s_switch +",resizable=yes,width=620,height=360,left="+ win_w +",top=" + win_h); 
   if (navigator.appName == "Netscape") detail.focus();
   
   var h = name.document.body.clientHeight;
   if (h > 0) { name.window.open('popup','','scrollbars=yes');}
}
