// JavaScript Document

var bc_userAgent = window.navigator.userAgent.toLowerCase();
var bc_appVersion = window.navigator.appVersion.toLowerCase();

function p_isiPhone() {
	v_ret = false;
	if (bc_userAgent.indexOf('iphone') >= 0) { v_ret = true; }
	return v_ret;
}
function p_isiPad() {
	v_ret = false;
	if (bc_userAgent.indexOf('ipad') >= 0) { v_ret = true; }
	return v_ret;
}
function p_isAndroid() {
	var v_ret = false;
	if (bc_userAgent.indexOf('android') >= 0) { v_ret = true; }
	return v_ret;
}
