/*オープンウィンドウ*/
function openWin(theURL,winName,features){
	window.open(theURL,winName,features);
}

/*画像読み込み*/
function imageload(){
	/*日付オブジェクト生成*/
	var objDate		 = new Date();
	/*現在日時取得*/
	var strNowTime	= objDate.getTime();
	/*画像差し替え（dummy_countはキャッシュ対策）*/
	document.images["livecamera_image"].src="./images/sample.jpg?dummy_count=" + strNowTime;
}

/*１分毎に処理を実行*/
setInterval("imageload()",10000);

