///////////////
// gPotato WebSite : gpotato_topics.js
// topics block Contents Modules
// 2009.07 Galaweb Inc.
////////////////////////////////////////////////////
//
//function topics()
// - Topics in the upper part of the page are displayed. 
//

function topics() {
	
	
	var sGpotatoUrl = "http://gpotato.jp";
	var sImageUrl = "http://image.gpotato.jp";
	var sRappelzUrl = "http://rappelz.gpotato.jp";
	var sSecureUrl = "https://secure.gpotato.jp";
	var sBillUrl = "http://bill.gpotato.jp";
		
	var domain = location.hostname;

	if (domain.indexOf("test")!= -1){
		sGpotatoUrl = "http://test.gpotato.jp";
	    sImageUrl = "http://test.image.gpotato.jp";
	    sRappelzUrl = "http://test.rappelz.gpotato.jp";
		sSecureUrl = "https://test.secure.gpotato.jp";
	    sBillUrl = "http://test.bill.gpotato.jp";
	}


	
	document.write('<div id="topics"><div id="topics_box" class="clearfix">');
	document.write('<p class="topics1"><a href="#"><img src="' + sImageUrl + '/gpotato/common/topics_btn_left.gif" width="20" height="21" border="0" alt="" /></a></p>');
	document.write('<p class="topics2">&nbsp;</p>');
	document.write('<p class="topics3"><a href="#"><img src="' + sImageUrl + '/gpotato/common/topics_btn_right.gif" width="20" height="21" border="0" alt="" /></a></p>');
	document.write('</div></div>');
} // topics()



