//201007

//IE6
try { 
	document.execCommand('BackgroundImageCache', false, true); 
} catch(e) {} 

//************************************
//Google Maps
function initialize(){
	if (GBrowserIsCompatible()){
		var map = new GMap2(document.getElementById("gmap"));
		map.setCenter(new GLatLng(33.9609, 133.2840), 16);

		//Create our "tiny" marker icon
		var tinyIcon = new GIcon();
		tinyIcon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
		tinyIcon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		tinyIcon.iconSize = new GSize(12, 20);
		tinyIcon.shadowSize = new GSize(22, 20);
		tinyIcon.iconAnchor = new GPoint(6, 20);
		tinyIcon.infoWindowAnchor = new GPoint(5, 1);

		//Set up our GMarkerOptions object literal
		markerOptions = { icon:tinyIcon };
		var point = new GLatLng(33.961404, 133.285210);
		map.addOverlay(new GMarker(point, markerOptions));

	window.onunload = GUnload;

	}
}

//************************************
//URL
function MyLocation(href,t){
	if(t){
		window.open(href,"");
	}else{
		location.href = href;
	}
}

//************************************
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

//************************************
//スタッフページ ランダム
function MyStaffPage(k){

	var p = new Array();
	p[0] = "saeki";
	p[1] = "jinno";
	p[2] = "tanaka";
	p[3] = "tachibana";
	p[4] = "kuge";
	p[5] = "kondo";
	p[6] = "sogawas";
	p[7] = "yamanaka";
	
	if(k == -1){
		var n = Math.floor(Math.random() * (p.length - 1));
	}else{
		var n = k+1;
		if(n >= p.length){ n = 0; }
	}
	//alert(n);

	var href = "http://www.1139.co.jp/contents/staff/" + p[n] + ".html";
	//var href = "http://www.dcj.jp/test/fuji/contents/staff/" + p[n] + ".html";
	location.href = href;

}

