// default.js//// 2006.11.15////新規ウィンドウで開く//function openWin( myURL ){	window.open( myURL );	return false;}//ポップアップfunction openPop( _url, _width, _height ){	window.open( _url, "", "width="+_width+",height="+_height+",resizable=yes" );	return false;}//[EOF]