//201007

//IE6
try { 
	document.execCommand('BackgroundImageCache', false, true); 
} catch(e) {} 

//************************************
//Google Maps
//2011.4.8 v3に変更
function initialize(){

	var MapOption = {
		zoom: 17,
		center: new google.maps.LatLng(33.961304, 133.284746),
		mapTypeId: google.maps.MapTypeId.ROADMAP,
		disableDefaultUI: true
	}
	var map = new google.maps.Map(document.getElementById('gmap'),MapOption);

	//marker
	var image = new google.maps.MarkerImage(
		'http://labs.google.com/ridefinder/images/mm_20_red.png',
 		new google.maps.Size(12, 20)
	);
	var marker = new google.maps.Marker({
		position: new google.maps.LatLng(33.961443, 133.285278),
		icon: image,
		map: map
	});

	//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);

}

//************************************
//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] = "tachibana";
	p[3] = "kuge";
	p[4] = "kondo";
	p[5] = "harada";
	p[6] = "yamanaka";
	p[7] = "sogawas";
	
	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/1139/contents/staff/" + p[n] + ".html";
	location.href = href;

}


