﻿



/* --------------- FORM NULL CHECK --------------- */

function ErrorCheck() {

	var str = "";

	if(document.form1.q.value == ""){

		str = "検索ワードを入力してください";

	}

	if(str != ""){

		alert (str);

	return false;

	}

}







/* --------------- OPEN FULL SCREEN --------------- */



function getScreenWIDTH(){

	if(!!window.screen){return screen.width;}

	else{return null;}

}

function getScreenHEIGHT(){

	if(!!window.screen){return screen.height;}

	else{return null;}

}

function setFullScreen(){



	var w = getScreenWIDTH();

	var h = getScreenHEIGHT();



	var win_set = 'width=' + w;

	win_set += ',height=' + h;

	win_set += ',resizable=no';

	win_set += ',toolbar=no';

	win_set += ',scrollbars=no';

	win_set += ',menubar=no';

	win_set += ',directories=no';

	win_set += ',top=0';

	win_set += ',statusbar=no';

	win_set += ',screenX=0';

	win_set += ',screenY=0';

	

	newwin = window.open('/tour/home.html', 'cu_tour', win_set);

	newwin.focus();

	

}