// JavaScript Document

function ShowTabs(tdid){
	var frame_height=new Array(3);
	frame_height[0]="475";
	frame_height[1]="505";
	frame_height[2]="505";
	var gname=new Array(3);
	gname[0]="lord";
	gname[1]="usa";
	gname[2]="warhammer";
	var gold_file=new Array(3);
	gold_file[0]="lotro-gold.html";
	gold_file[1]="wow-gold.html";
	gold_file[2]="warhammer-gold.html";
	var cur_menu=document.getElementById("Menu"+tdid);
	var bi=document.getElementById("BarImg");
	var gf=document.getElementById("gframe");
	var isIe=(navigator.appName=="Microsoft Internet Explorer"); 
	if(isIe){
		for(i=0;i<bi.cells.length;i++) 	bi.rows[0].cells[i].className="tab_style1";
    	cur_menu.className="tab_style2";
		bi.background="images/bar_"+gname[tdid]+".jpg";	
	}
	else{
		for(i=0;i<bi.rows[0].cells.length;i++)	bi.rows[0].cells[i].setAttribute("class","tab_style1");
    	cur_menu.setAttribute("class","tab_style2");
		bi.setAttribute("background","images/bar_"+gname[tdid]+".jpg");
	}
	gf.src=gold_file[tdid]+"#"+gname[tdid];
	gf.height=frame_height[tdid];
}

function addBookmark(url,title)
{
	if(window.sidebar)
		window.sidebar.addPanel(title,url,"");
	else if(document.all)
		window.external.AddFavorite( url, title);
	else if( window.opera && window.print )
		return true;
}

function chkUrlBookmark()
{
	var curUrl=window.location.href;
	if(curUrl.indexOf("#lord")>=0) ShowTabs(0);
	else if(curUrl.indexOf("#usa")>=0) ShowTabs(1);
	else if(curUrl.indexOf("#eur")>=0) ShowTabs(1);
	else if(curUrl.indexOf("#warhammer")>=0) ShowTabs(2);
}