<!--
var agt = navigator.userAgent.toLowerCase() ;
var add = null ;
if (agt.indexOf("mac") != -1)
{
add = "macintosh" ;
}
if (add)
{
var url = self.location.href ;
var ary = url.substring(url.indexOf("enya")).split('/') ;
var dir = "" ;
for (i = ary.length - 2 ; i > 0 ; i--)
{
dir += "../"
}
document.write('<link rel="stylesheet" href="') ;
document.write(dir + 'layout/styles/' + add) ;
document.write('.css" type="text/css">');
}
function onLoadActions()
{
if (top.location && (self != top))
{
top.location = self.location ;
}
}
// -->

