﻿//show keywords created 2009/04/08

function randam(){
	for( i=0; i < data.length; i++ ){
		k = i;
		k = Math.floor( Math.random() * data.length );
		tmp = data[i];
		data[i] = data[k];
		data[k] = tmp;
	}
	URL = 'http://search.ashia.to/sponsor/';
}

function show_keywords(){
	randam();
	for(j=0; j<10; j++){	
		document.write('<td><a href="' + URL + '?Keywords=' + encodeURI(data[j][1]) + '&ref=' + encodeURI(data[j][0]) +'">'+ data[j][1] +'<\/a><\/td>');
	    document.write('<\/tr><tr>');
	}
}

function show_keywords_marquee(){
	randam();
	document.write('<MARQUEE BEHAVIOR="SCROLL" SCROLLAMOUNT="1" SCROLLDELAY="1">');
	for(j=0; j<20; j++){	
		document.write('<a href="' + URL + '?Keywords=' + encodeURI(data[j][1]) + '&ref=maq_' + encodeURI(data[j][0]) +'">◆'+ data[j][1] +'<\/a>　　');
	}
	document.write('<\/MARQUEE>');
}

function show_keywords_liner(){
	randam();
	for(j=0; j<8; j++){	
		document.write('<a href="' + URL + '?Keywords=' + encodeURI(data[j][1]) + '&ref=lin_' + encodeURI(data[j][0]) +'">'+ data[j][1] +'<\/a>　');
	}
}


