// ポップアップ

function openWin( url, w, h )
{
	wo=window.open(url,"popup","scrollbars=no,resizable=yes,width="+w+",height="+h);
	wo.focus();
}