//尚のたわごと
function tawagoto(){
	doc = "<div id=l1 align='left'>";
	doc += "おしらせ 2010/05/11 更新<br>";
	doc += "投稿動画コーナーの整理、新規追加など。<br>";
	doc += "完全新作のカービィ、そろそろ出ないかなぁ。カービィWii（仮）とか。<br>";
	doc += "現在は<a href='http://d.hatena.ne.jp/nao_tsukiya/' target='_blank'>ブログ更新メイン</a>。<br>";
	doc += "</div>";
	document.write(doc);
}



//ランダムTOP絵
img= new Array();
img[0] = "top1.gif";
img[1] = "top3.gif";

var name= new Array();
name[0] = "尚";
name[1] = "尚";

folder = "";

function random_top(){
max_img=img.length;
i_num = Math.floor(Math.random() * max_img);
document.write('<img src="http://www.potsukiya.net/img/top/'+img[i_num]+'" width="300" height="300" alt="管理人作">');
//document.write('<img src="http://www.potsukiya.net/img/top/'+folder+'/'+img[i_num]+'" width="300" height="300" alt="'+name[i_num]+'さん作">');
//document.write('<br>らしいですよ？');
//document.write('<br>'+name[i_num]+'さんの作品です');


//document.write('<br>TOP絵：全30枚');
//document.write('<br>'+name[i_num]+'さんの作品です');
}



//ドロップメニュー
function LinkSelect(form, sel){
	adrs = sel.options[sel.selectedIndex].value; 
	if (adrs != "-" ) parent.pop.location.href = adrs;
} 

//mailto
function mailer(){
var name = "nao.tsukiya";
var domain = "gmail.com";
document.write('<a href=\"mai' + 'lto:' + name + '&#64;' + domain + '\">');
} 

