<!--
//レイヤーセレクタ
function layer_sellector(targetLayer,nextStyle){

  if (document.all){
  document.all[targetLayer].style.visibility = nextStyle;
  }else if (document.layers){
  document.layers[targetLayer].visibility = nextStyle;
  }else if (document.getElementById){
  document.getElementById(targetLayer).style.visibility = nextStyle;
  }
}


//オープンウィンドウ
function OpenWindow( url, width, height, options, name ){
  if(!width) width = 550;
  if(!height) height = 580;
  if(!options) options = "scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes";
  if(!name) name = "outsideSiteWindow";

  var newWin = window.open( url, name, "width=" + width + ",height=" + height + "," + options );
}

//ポップアップリンク指定
function setURL1()
{
	window.opener.location.href = "/index.html";
}

function setURL2()
{
	window.opener.location.href = "http://www.carsensor.net/";
}
//-->
