document.oncontextmenu = function() { return false };

function hide_status(){
	var anchor = document.getElementsByTagName('a');
	var anchorLen = anchor.length;
	var func = 'hide_exec(); return true;';
	for(var i=0;i<anchorLen;i++){
		if (document.all){
			anchor[i].setAttribute('onmouseover', new Function(func));
			anchor[i].setAttribute('onfocus', new Function(func));
		} else {
			anchor[i].setAttribute('onmouseover', func);
			anchor[i].setAttribute('onfocus', func);
		}
	}
}
function hide_exec(){
	window.status = '';
}

function userAgentJudgment() {
	var agent = navigator.userAgent;
	var src = '<div style="display:block;background:#999 url(http://hicbc.com/image/index/bg_ipn_link.gif) repeat-x;padding:52px;text-align:center;font-size:52px;font-weight:bold;text-shadow:-2px -2px 2px #000;border-top:solid 5px #border-5px #000;"><a href="http://m.hicbc.com/smart/" style="color:#fff">CBCスマートフォンサイトはこちら</a></div>';
	
	var currentLoc = location.href;
	
	if(currentLoc =="http://hicbc.com/" || currentLoc == "http://hicbc.com/index.htm") {
		if(agent.search(/iPhone/) != -1){
			document.write(src);
		} else if(agent.search(/Android/) != -1){
			document.write(src);
		}
	}
}

