//プリントアウトのメニューを開く-----------------

function printout() {

	window.print();

}


//ポップアップをする-----------------------------

function popup650(url){

	window.open("" + url +"", "Test", "width=665, menubar=no, toolbar=no, scrollbars=yes, resizable=yes ");
	
}
function popup820(url){

	window.open("" + url +"", "Test", "width=820, height=720, menubar=no, toolbar=no, scrollbars=yes, resizable=yes ");
	
}

function popup660(url){

	window.open("" + url +"", "Test", "width=660, height=450, menubar=no, toolbar=no, scrollbars=yes, resizable=yes ");
	
}

function popup1040(url){

	window.open("" + url +"", "Test", "width=1055, menubar=no, toolbar=no, scrollbars=yes, resizable=yes ");
	
}


function popup970(url){

	window.open("" + url +"", "Test", "width=985, height=700, menubar=no, toolbar=no, scrollbars=yes, resizable=yes ");
	
}

//カテゴリTOPイメージをランダムで表示------------

var genreCount = new Array;

//genreCountはそれぞれのカテゴリのランダム画像の数を表してる。
//ランダム表示の画像の数が変更される場合はここの数を編集する。

genreCount["top"] = 3;

function randomtop(genre){

count = Math.floor(Math.random() * genreCount[genre]);

topImage = "<img src='/i/h1_top_0" + count + ".jpg' width='558' height='240' alt='バーチャルオフィス' title='バーチャルオフィス' />";

document.getElementById("H1Top").innerHTML = topImage;

}