2007 12/15 14:15
Category : 日記
*commonスクリプト
---------------
/*
common.js - functions for user site
eclat CommunitySystem
Copyright (c) 2004-2005 MaJestic 12. All rights reserved.
*/
function checkFrame(type)
{
if (type == 'top')
{
self == top
|| (top.location.href = self.location.href);
}
else if (type == 'main_youchan1951')
{
if (!(self == top || self == top.frames['main_youchan1951']))
{
nowHref = self.location.href;
top.location.href = 'http://www.eclat.cc/home/youchan1951/';
top.frames['main_youchan1951'].location.href = nowHref;
}
}
else if (type == 'menu_youchan1951')
{
self == top || self == top.frames['menu_youchan1951']
|| (top.location.href = 'http://www.eclat.cc/home/youchan1951/');
}
}
function eitherOwnerOrGuest()
{
if (document.cookie.indexOf('HOME=1;') == -1)
{
var elements = document.getElementsByTagName("*");
for (var i = 0, len = elements.length; i < len; i++)
elements[i].className == 'for-owner'
&& (elements[i].className = 'for-guest');
}
}
---------------
/*
common.js - functions for user site
eclat CommunitySystem
Copyright (c) 2004-2005 MaJestic 12. All rights reserved.
*/
function checkFrame(type)
{
if (type == 'top')
{
self == top
|| (top.location.href = self.location.href);
}
else if (type == 'main_youchan1951')
{
if (!(self == top || self == top.frames['main_youchan1951']))
{
nowHref = self.location.href;
top.location.href = 'http://www.eclat.cc/home/youchan1951/';
top.frames['main_youchan1951'].location.href = nowHref;
}
}
else if (type == 'menu_youchan1951')
{
self == top || self == top.frames['menu_youchan1951']
|| (top.location.href = 'http://www.eclat.cc/home/youchan1951/');
}
}
function eitherOwnerOrGuest()
{
if (document.cookie.indexOf('HOME=1;') == -1)
{
var elements = document.getElementsByTagName("*");
for (var i = 0, len = elements.length; i < len; i++)
elements[i].className == 'for-owner'
&& (elements[i].className = 'for-guest');
}
}