function rfGetAddress(){
	
	var objLink = document.getElementById('ruby');	
		
	var strLocation = '';
	
	try {
		strLocation = location.href.toString();
	}catch(e){
		strLocation = '';
	}
	
	if (strLocation.indexOf('?') > 0) {
		
		if(document.all){ // IE用
		
			objLink.href = strLocation + '#';
			return true;
		}else{ // IE以外
			objLink.href = strLocation + '';
			return false;
		}

	}


	if(document.all){ // IE用
		objLink.href = objLink.href + '?u=' + strLocation;
		return true;
	}else{ // IE以外
		location.href = objLink.href + '?u=' + strLocation;
		return false;
	}
}
