/***************************************************
FO_fileSelect.js
Copyright, 2002, FAROUT Corporation, All rights reserved.
http://www.farout.jp/
***************************************************/
function css_select ( path, ie_suffix, nc_suffix ) {
if ( __AGENT__.isMac ) {
filename = 'mac';
} else {
filename = 'win';
}
document.write( '<link rel="stylesheet" href="' + path + filename + ( __AGENT__.isIE ? ie_suffix : nc_suffix ) + '.css" type="text/css">' );
}
function ico_select ( path, ie_suffix, nc_suffix ) {
document.write( '<link rel="shortcut icon" href="' + path + 'favicon' + ( __AGENT__.isIE ? ie_suffix : nc_suffix ) + '.ico" type="image/ico">' );
}
