/**
	@file
	hyp_gmap_utility.js <br/>
	<br/>
	<br/>
	DEPENDENCIES <br/>
	 - hyp_gmap_utility.js <br/>

	@version 1.0.0.0
	@since  20/10/2009
	$Revision: $
*/

/**
	GoogleMapが利用できるかどうか判定
	@brief GoogleMapが利用できる：true できない：false
	@param なし
*/
function checkGMapValid(){
	var result = true;
	
	if(typeof(GBrowserIsCompatible) == "undefined"){
		result = false;
	}
	
	return result;
}
/*
 * Copyright (c) 2007-2008 by Hitachi Systems,Ltd. All Rights Reserved.
 * Consult your license regarding permissions and restrictions.
 */

