//onClick="popup('URL','ウィンドウネーム','ツールバー','幅','高さ');return false"function popup(win_url,win_name,win_toolbar,win_width,win_height){	h = screen.height;	if(win_height >= h){		win_height = h	}	window.name="popup";	var win_data = "toolbar=" + win_toolbar + ",location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=" + win_width + ",height=" + win_height;	WinOpen = window.open(win_url,win_name,win_data);	WinOpen.focus();}function winResize(win_width,win_height){	h = screen.height;	if(win_height >= h){		win_height = h-50;	}	window.resizeTo(win_width,win_height);}