function move(url){
	alert(url);
	location.href = url;
}
function search(str) {
	
	move('/search/?q=' + escape(str));
}

function ads_img_small(){
        var i = myrandom(11) - 1;
        document.write("<img class=\"thumbnail\" src=\"/img/ads_"+i+".jpg\" width=\"80\" height=\"60\">");
}
function myrandom(max){
        var v = max * Math.random();
        if(v == 0.0){v = 1;}else{v = Math.ceil(v);}
        return v;
}
function copipe(id) { 
	var text = document.getElementById(id).value;
	copy_id = document.getElementById(id);
	copy_id.focus();
	copy_id.select();
	if(document.all && navigator.userAgent.match(/windows/i) && text){
		copy_obj = document.getElementById(id).createTextRange();
		copy_obj.execCommand('Copy');
	} else { 
		alert('WinIE以外ではコピーできません。'); 
	} 
}



