function getURI()
{
	// ターゲットのURL
	var sURI = location.href;
	//alert(sURI);
	//var sURI = 'security';
	// SWFに送る変数
	var toSWF;
	
	//　パターンマッチング
	if (sURI.match(/security/i) )
	{
		//alert('security');
		toSWF = 'security'; 
	}
	else if (sURI.match(/application/i))
	{
		//alert('application');
		toSWF = 'application';
	}
	else if (sURI.match(/communication/i))
	{
		//alert('communication');
		toSWF = 'communication';
	}
	else if (sURI.match(/platform/i))
	{
		//alert('platform');
		toSWF = 'platform';
	}
		return toSWF;
}