/*えう*/
////////////////////////////////////////////////////////////
//
// choice css script
//
////////////////////////////////////////////////////////////

ua    = "" ;
mtype = "" ;
bname = "" ;

pc   = "pc" ;
ie   = "MSIE" ;
ffox = "Firefox" ;
ns   = "Netscape" ;
saf  = "Safari" ;
ope  = "Opera" ;
css  = '<link href="/common/css/top.css" type="text/css" rel="stylesheet" />' ;

ua = navigator.userAgent ;

if(ua.match(/MSIE/i)) {
	mtype = pc ;
	bname = ie ;
}

if(ua.match(/Firefox/i)) {
	mtype = pc ;
	bname = ffox ;
}

if(ua.match(/Netscape/i)) {
	mtype = pc ;
	bname = ns ;
}

if(ua.match(/Safari/i)) {
	mtype = pc ;
	bname = saf ;
}

if(ua.match(/Opera/i)) {
	mtype = pc ;
	bname = ope ;
}

if(mtype == pc) {
	document.write(css);
}

