//Globalheader textbanner(txt only)
function randomtxt()
{
rimage = Math.floor(Math.random() * 3);

if (rimage == 0)
{
	url = "http://players.tv/"
	txt = "続々と新コンテンツが登場！2009年もプレイヤーズから目を離せない！"
}; 

if (rimage == 1)
{
	url = "http://tv.players.tv/"
	txt = "無料動画放送局『プレイヤーズてれび』が開局！"
}; 

if (rimage == 2)
{
	url = "http://ch.players.tv/movie/page/=/jdstar/index"
	txt = "格闘美チャンネル、大好評につき配信期間延長！"
};

banner = "<a href='" + url + "'>" + txt + "</a>";
document.write(banner);
};

//TOP centerbanner(500x150 images only - no flash)
function randomcenter()
{
rimage = Math.floor(Math.random() * 1);

if (rimage == 0)
{
	img = "http://ch-image.players.tv/site/image/common_parts/bn500/hayabusa100224.jpg"
	url = "http://ch.players.tv/movie/page/=/hayabusa/index"
	alt = "ハヤブサ"
}; 

banner = "<a href='" + url + "'><img src='" + img + "' border=0 width='500' height='150' alt='" + alt + "'></a><br>";
document.write(banner);
};
